I am using the innerHTML property to modify a DIV dynamically, to report on a process that takes a few seconds to finish. The problem is that on Fi
innerHTML
DIV
Try interrupting your script periodically. You should be able to use
setTimeout(nextFunction, 0);
to provide the necessary interruption without a long delay, where nextFunction is the function that continues with your lengthy processing.