vote up 0 vote down star

Here is the situation. I have some javascript that looks like this:

function onSubmit() {
    doSomeStuff();
    someSpan.style.display="block";
    otherSpan.style.display="none";
    return doLongRunningOperation;
}

When I make this a form submit action, and run it from a non IE browser, it quickly swaps the two spans visibility and run the long javascript operation. If I do this in IE it does not do the swap until after onSubmit() completely returns.

I can force a dom redraw by sticking an alert box in like so:

function onSubmit() {
    doSomeStuff();
    someSpan.style.display="block";
    otherSpan.style.display="none";
    alert("refresh forced");
    return doLongRunningOperation;
}

Also, the obvious jquery refactoring does not affect the IE behavior:

function onSubmit() {
    doSomeStuff();
    $("#someSpan").show();
    $("#otherSpan").hide();
    return doLongRunningOperation;
}

This behavior exists on IE8 and IE6. Is there anyway to force a redraw of the DOM in these browsers?

flag

53% accept rate
Firstly, what are you doing in the longRunningOperation? – meder Sep 9 at 4:11
Have you tried moving the visibility toggling to its own function? – seth Sep 9 at 4:21
longRunningOperation is doing form validation. The form is large in a small subset of cases. – Justin Dearing Sep 9 at 4:27

3 Answers

vote up 1 vote down check

Can your longRunningOperation be called asynchronously?

link|flag
You ended up being right, but with some work. I called the long running operation asynchronously, had my submit event return false, and then the async event really submits my form. This lead to proper behavior in all browsers, but took a lot of work and kinda feels kludgy. – Justin Dearing Sep 10 at 2:35
It might feel kludgy, but the best design of the client-side of your app will be one that keeps the browser responsive. When you start long running processes you will hang the browser (big NO!) so it is best to spend the time designing how to manage async operations. Anyways .. have fun! – misteraidan Sep 14 at 1:39
vote up 3 vote down

Mozilla (maybe IE as well) will cache/delay executing changes to the DOM which affect display, so that it can calculate all the changes at once instead of repeatedly after each and every statement.

To force an update (to force an immediate, synchronous reflow or relayout), your javascript should read a property that's affected by the change, e.g. the location of someSpan and otherSpan.

(This Mozilla implementation detail is mentioned in the video Faster HTML and CSS: Layout Engine Internals for Web Developers.)

link|flag
interesting. didn't know this. – meder Sep 9 at 4:23
I will give that a try in the AM. – Justin Dearing Sep 9 at 4:24
I tried this, but could not get it to work. – Justin Dearing Sep 10 at 2:36
At time 37:15 in the Mozilla video I cited, he suggests asking for "offset top" or "offset left" which require that the layout be up-to-date. – ChrisW Sep 10 at 2:49
vote up 0 vote down

You can also wrap you longterm function in a setTimeout(function(){longTerm();},1);

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.