$.blockUI loading mask
Posted
by usman
on Stack Overflow
See other posts from Stack Overflow
or by usman
Published on 2009-03-02T12:09:21Z
Indexed on
2010/05/08
18:58 UTC
Read the original article
Hit count: 623
jQuery
|jquery-plugins
hi, i am using jQuery BlockUI Plugin (v2) to block and unblock while loading and when on clicking some button.but my problem is masking is working fine while loading page but it is not working when we click button,here is my code
$("input[name^=filtera]").click(function(){
$.blockUI({message:'<h3><img src="images/spinner.gif" /> Please Wait...</h3>'});
$.ajax({
url : "ChangeRequestSearch.action?last_date_modified=" + modifiedDate ,
cache: false,
success : function (data) {
$("#tableLoader").html(data);
}
});
$().ajaxStop($.unblockUI);
});
i am getting the Error: $.blockUI is not a function
let me know what is the problem
Thanks Usman.sk
© Stack Overflow or respective owner