I am using this code for reading files. Everything is OK with Chrome and FF, but IE does not update the data from the file ... seems to be reading from cache??? Any suggestions? Thanks
if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else {// code for IE6, IE5 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.open("GET","YOUR_FILE.txt",false); xmlhttp.send(); xmlDoc=xmlhttp.responseText;