Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using this Plugin in order to block the UI when <input type="submit"> is clicked. However I don't want to block UI immediately, but 2 seconds later.

The following function doesn't work because $('#processingData') cannot be found, although I have defined <h3 id="ProcessingData" style="display:none">Processing Data...</h3> in the html body.

$(function() {
    $('input[type=submit]').click(function() {
        setTimeout(function() {
            $.blockUI({ 
                message: $('#processingData')
            }); 
        }, 2000);
    });
});
share|improve this question
a quick guess is you should use message: $('#processingData').text() – lock Sep 15 '10 at 7:49

1 Answer

up vote 1 down vote accepted

Dunno if this is just a typo in your question, but processingDataand ProcessingData is not the same. Notice the capital P at the beginning.

And shouldn't it be

message: $('#ProcessingData').text()

?

share|improve this answer
thank you very much, I was so stupid! That should be 'processingData' not 'ProcessingData' ! – rekinyz Sep 15 '10 at 9:28
1  
yes and no, I mean not exactly, It is the feature of BlockUI. The message can be plain text and text with styles. That means, the input here can be the whole html fragement: <h3 id="ProcessingData" style="display:none">Processing Data...</h3> You're right, I had mixed up the 'P' and 'p'. Thank you once again! ;) – rekinyz Sep 16 '10 at 13:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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