-
-
Save rolfen/f73bcd6eb4b476d6debded5dac58fc2c to your computer and use it in GitHub Desktop.
JS: Listen to ajax calls from Javascript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// override XMLHttpRequest | |
// source: https://gist.github.com/icodejs/3183154 | |
var open = window.XMLHttpRequest.prototype.open, | |
send = window.XMLHttpRequest.prototype.send; | |
function openReplacement(method, url, async, user, password) { | |
return open.apply(this, arguments); | |
} | |
function sendReplacement(data) { | |
this.addEventListener('readystatechange', function() { | |
// Catch response here | |
}, false); | |
return send.apply(this, arguments); | |
} | |
window.XMLHttpRequest.prototype.open = openReplacement; | |
window.XMLHttpRequest.prototype.send = sendReplacement; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment