Skip to content

Instantly share code, notes, and snippets.

@adis-io
Created March 25, 2012 18:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adis-io/2198857 to your computer and use it in GitHub Desktop.
Save adis-io/2198857 to your computer and use it in GitHub Desktop.
perviy
var xhr = new XMLHttpRequest();
xhr.open('GET', 'http://diesel.elcat.kg/index.php?showtopic=10954635', true);
xhr.onload = function(e) {
if (this.status == 200) {
console.log(xhr.response);
}
};
xhr.send();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment