Skip to content

Instantly share code, notes, and snippets.

@bitsmanent
Last active August 22, 2018 17:08
Show Gist options
  • Save bitsmanent/7325ca5c075d954dc61406d7e0cdc7aa to your computer and use it in GitHub Desktop.
Save bitsmanent/7325ca5c075d954dc61406d7e0cdc7aa to your computer and use it in GitHub Desktop.
Track XMLHttpRequest (new)
function trackxhr() {
var oxhr = window.XMLHttpRequest.prototype.open;
window.XMLHttpRequest.prototype.open = function(method, url, async, usr, pwd) {
console.log("XHR OUT", url);
this.addEventListener("load", function() {
console.log("XHR IN", this.responseText);
});
return oxhr.apply(this, arguments);
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment