Skip to content

Instantly share code, notes, and snippets.

@im-noob
Created April 13, 2021 07:52
Show Gist options
  • Save im-noob/54455ab0499d8fd7cb46c231662a41a8 to your computer and use it in GitHub Desktop.
Save im-noob/54455ab0499d8fd7cb46c231662a41a8 to your computer and use it in GitHub Desktop.
Detect XHR ajax request with javascript
(function() {
var proxied = window.XMLHttpRequest.prototype.open;
window.XMLHttpRequest.prototype.open = function() {
console.log( arguments );
return proxied.apply(this, [].slice.call(arguments));
};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment