Having issue with unblockUI. It gives compile timne error. syntax error $.unblockUI();
<SCRIPT type="text/javascript">
var $ = jQuery.noConflict();
$('#toHide').show().blockUI();
setTimeout('document.getElementById("safeForm15").submit()', 100);
$.unblockUI();
</SCRIPT>
Purpose is blockUI for a period of time show laoding please wait message then unblockit or go to next page.
after removing } im getting another error: ie
$(“#toHide”).show().blockUI is not a
function
You have an unmatched brace. The last line should be
EDIT
cannot be called on any object except for the jQuery object. So try: