I have this code that I am using and it works fine in chrome, but in IE, it looks like that onreadystatechenge is not firing.
How do I get this to work cross browser. I
Your XMLHttpRequest object might be caching.
XMLHttpRequest
Try:
var myNoCachePage = document.location + '?' + new Date().getTime(); xhr.open("GET", myNoCachePage, true); // Prevent IE11 from caching xhr.send();