Skip to content

Instantly share code, notes, and snippets.

@maplpro
Created September 21, 2010 17:59
Show Gist options
  • Save maplpro/590138 to your computer and use it in GitHub Desktop.
Save maplpro/590138 to your computer and use it in GitHub Desktop.
goog.net.XhrIo
goog.net.XhrIo.send('http://www.example.com/testdata.txt', function(e) {
// e.type will be goog.net.EventType.COMPLETE
var xhr = /** @type {goog.net.XhrIo} */ (e.target);
alert(xhr.getResponseText());
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment