Skip to content

Instantly share code, notes, and snippets.

@ralphtheninja
Created April 26, 2013 23:58
Show Gist options
  • Select an option

  • Save ralphtheninja/5471228 to your computer and use it in GitHub Desktop.

Select an option

Save ralphtheninja/5471228 to your computer and use it in GitHub Desktop.
<!doctype html>
<html>
<body>
</body>
<script src=./mtgox.js></script>
</html>
function httpGet(theUrl) {
var xmlHttp = new XMLHttpRequest();
xmlHttp.open( "GET", theUrl, false );
xmlHttp.send( null );
return xmlHttp.responseText;
}
document.write(httpGet("https://data.mtgox.com/api/2/BTCUSD/money/ticker"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment