I have a problem in Internet Explorer, it works fine with Firefox.
I have a java script function that updates the user interface (screen contents) that is called before the AJAX function. But it does not update the user interface until it is prompted to use a warning window. Without a warning window, it does not update the interface before the AJAX function. It updates the interface after the AJAX function, even if it is called before the AJAX function
If I use the following code, UpdateUI () does not update the user interface at all before calling the AJAX function, it updates the interface after calling the AJAX function. I want it to update the user interface before calling the AJAX function (in fact, it displayed the loading bar before calling the AJAX)
UpdateUI(); // java script function, it just updates inner HTML of a DIV // AJAX function call here with Async = false
But if I use the following code, UpdateUI () updates the interface before calling the AJAX function, but this method includes a hint. I do not want to use alerts
UpdateUI(); // java script function, it just updates inner HTML of a DIV alert('hellow'); // AJAX function call here with Async = false
It works fine in Firefox, but not in Internet Explorer 8
source share