Skip to content

Instantly share code, notes, and snippets.

@yannisxu
Created November 28, 2014 03:09
Show Gist options
  • Save yannisxu/80adbafdcd16a86b31c7 to your computer and use it in GitHub Desktop.
Save yannisxu/80adbafdcd16a86b31c7 to your computer and use it in GitHub Desktop.
javascript get
function httpGet(theUrl)
{
var xmlHttp = null;
xmlHttp = new XMLHttpRequest();
xmlHttp.open( "GET", theUrl, 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