I have web UI in which I am refreshing values on my web page after 2secs. What I observed is that it works well in chrome but not in IE. I tried to find solution that are provided on other forums but that are not working. I treid to put alert in my javascript, it shows the same values in IE and updated values in chrome.
I would like to know whether there is anything in javascript needs to handle in order to work it in IE 8.0
setInterval(xmlfunc(),2000);
var myval=Function(xmlhttp.responseText,"MYVAL");
Regds