Skip to content

Instantly share code, notes, and snippets.

@hofiorg
Created August 11, 2014 13:59
Show Gist options
  • Save hofiorg/97041bd82ef9b1a7e813 to your computer and use it in GitHub Desktop.
Save hofiorg/97041bd82ef9b1a7e813 to your computer and use it in GitHub Desktop.
javascript - httpGet
function httpGet(url) {
var xmlHttp = new XMLHttpRequest();
xmlHttp.open( "GET", url, false );
xmlHttp.send( null );
return xmlHttp.responseText;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment