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);
});
});