In order to show an opaque background or animated gif while executing some method after an button click fails to show this. It only runs after all the code has been executed.

Can I do this in jQuery, i.e. on a click event render html changes before and after main code.

The long running method is adding 100-500 divs to the page that takes about 10 seconds to finish.

$('#button).click(function() {   
    $('#curtain').css('visibility', 'visible');
    longRunningMethod();    
    $('#curtain').css('visibility', 'hidden');  
 });    

The problem is that the #curtain div never shows, as the complete javascript has to be executed before rendering all the changes.

Style:


#curtain {
    position: fixed;
    _position: absolute;
    z-index: 99;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    _height: expression(document.body.offsetHeight + "px");
    background-color: #CCCCCC;
    filter:alpha(opacity=50);
    -moz-opacity:0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
    visibility: hidden;
}

link|improve this question

What is the long running method doing? – tster Dec 14 '10 at 21:18
Your question starts with a confusing run-on sentence, can you please re-word this? I have no idea what you're really asking. – Incognito Dec 14 '10 at 21:20
feedback

2 Answers

up vote 2 down vote accepted

This is kind of a hack, but if you use setTimeout it might work.

$('#button).click(function() {   
    $('#curtain').css('visibility', 'visible');
    setTimeout(doBigJob, 100);
 });

function doBigJob()
{
    longRunningMethod();    
    $('#curtain').css('visibility', 'hidden');
}
link|improve this answer
I like this hackaroo. pretty cool. – tster Dec 14 '10 at 21:22
Thanks that worked pretty good :-) – mrjohn Dec 14 '10 at 22:21
feedback

You should never have long running methods in the UI thread of a webpage. It will make the page appear to lock up and is very annoying for the user.

Instead you should use asynchronous callback. The long running method I assume does some AJAX calls. In which case it should accept a function as an argument (like the jquery "click", "ajax", etc.). Then pass that function to the ajax method as the completion or success callback.

Then you can do:

$('#button).click(function() {   
    $('#curtain').css('visibility', 'visible');
    longRunningMethod(function() {$('#curtain').css('visibility', 'hidden');});
 });
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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