Skip to content

Instantly share code, notes, and snippets.

View mshll's full-sized avatar
:octocat:

meshal mshll

:octocat:
View GitHub Profile
@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;
}