I\'m trying to overload the XMLHttpRequest.* method in JavaScript so a webpage can figure out if an Ajax request took place without using any intrusive callbacks. Now, something
You can keep a reference to the original in some variable before you override the method and then call that variable within the function you overrode:
var temp = XMLHttpRequest.getResponseHeader;
XMLHttpRequest.getResponseHeader = function() { temp.apply(this, arguments); };
That should let you track uses without overriding the functionality provided by the original function.