I'm trying to fetch informations from an XML file on my local machine. It was a success with firefox, but for some reason it doesn't work with IE8 and it has to run on IE7+.
IE doesn't report an error until i add this line to my .js file :
xmlhttp.open("GET","food.xml",false);
I built up my script using W3schools as references and i am using mostly everything like they do here : http://www.w3schools.com/ajax/tryit.asp?filename=tryajax_database
This entire block works on firefox but not on IE, if that can be of any help
xmlhttp=new XMLHttpRequest();
xmlhttp.open("GET","food.xml",false);
xmlhttp.send();
xmlDoc=xmlhttp.responseXML;
I am sorry and i know this must have been answered already but i don't have the proper vocabulary to find this specific issue.