Skip to content

Instantly share code, notes, and snippets.

@mshll
mshll / crypto_ticker.js
Created February 22, 2018 23:37
Bitcoin + Litecoin ticker js
function httpGet(theUrl)
{
var xmlHttp = null;
xmlHttp = new XMLHttpRequest();
xmlHttp.open( "GET", theUrl, false );
xmlHttp.send( null );
return xmlHttp.responseText;
}