Board index » javascript » Update image immediately? How to avoid waiting until onload() finishes?
|
stahl.karl
Registered User |
|
stahl.karl
Registered User |
Update image immediately? How to avoid waiting until onload() finishes?
2006-02-10 12:31:50 PM
I am trying to update an image when I load a page, then perform a bunch of other actions that take a while. The problem is that the image does not update until the entire function has finished running. Is there some command that will allow me to force the first line to run, THEN do the rest of the other stuff in the function? Here's an example of what I am trying to do: <script type=text/javascript> function do_stuff_on_load { mycell.innerHTML="<img src=" + image + ">" ...do a bunch of other stuff that takes a long time } </script> <body onload=do_stuff_on_load()> <table> <tr> <td id=mycell> </body> Thanks so much! - |
