Skip to content

Instantly share code, notes, and snippets.

@MirceaUngureanu
Created November 15, 2018 11:42
Show Gist options
  • Save MirceaUngureanu/6ba9ffa3334f167ed5c9370a14ac8040 to your computer and use it in GitHub Desktop.
Save MirceaUngureanu/6ba9ffa3334f167ed5c9370a14ac8040 to your computer and use it in GitHub Desktop.
Add custom functionality to stock XMLHttpRequest.prototype.send or use as a vanilla JS alternative to jQuery ajaxSend()
(function(originalSend){
XMLHttpRequest.prototype.send = function (data) {
// your custom code here
originalSend.call(this, data);
};
})(XMLHttpRequest.prototype.send);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment