Skip to content Skip to sidebar Skip to footer

Change Responsetext From A Xmlhttprequest

i use this code to track all the ajax requests from my site XMLHttpRequest.prototype.uniqueID = function( ) { if (!this.uniqueIDMemo) { this.uniqueIDMemo = Math.floor(

Solution 1:

On IE, you should use

obj.attachEvent(); 

instead

obj.addEventListener();

Post a Comment for "Change Responsetext From A Xmlhttprequest"