Skip to content

Instantly share code, notes, and snippets.

@olivmonnier
Last active December 13, 2017 17:00
Show Gist options
  • Select an option

  • Save olivmonnier/c4d05d1678426ad69992e7393869bbda to your computer and use it in GitHub Desktop.

Select an option

Save olivmonnier/c4d05d1678426ad69992e7393869bbda to your computer and use it in GitHub Desktop.
Intercept xhr
(function(open) {
XMLHttpRequest.prototype.open = function() {
this.addEventListener("readystatechange", function() {
console.log(this.readyState);
}, false);
open.apply(this, arguments);
};
})(XMLHttpRequest.prototype.open);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment