I've been struggling with this all day. All I want to do is make the display style = block on a "Please wait" element on a web page while some lengthy data manipulations occur.
The only way the element becomes visible is if I place an alert ( "xxxx" ); debug statement in my onChange() event handler. What the @#$% is going on? What am I supposed to do to make the element visible during the data manipulation? It seems that while the onChange() event is executing, nothing outside of it can happen until it's done.
I've tried setting a setInterval() function. It does continuously run (at least once every second) but not while the onChange() event is running. Everything stops during it.
Thanks in advance,
Jerry
Jerry Scannell
The only way the element becomes visible is if I place an alert ( "xxxx" ); debug statement in my onChange() event handler. What the @#$% is going on? What am I supposed to do to make the element visible during the data manipulation? It seems that while the onChange() event is executing, nothing outside of it can happen until it's done.
I've tried setting a setInterval() function. It does continuously run (at least once every second) but not while the onChange() event is running. Everything stops during it.
Thanks in advance,
Jerry
Jerry Scannell