Block UI Jquery plugin for a specific DIV
Anyone knows a JQuery plugin for BlockUI that allows blocking a specific DIV, not just the whole p开发者_如何学Goage. Thanks.
You can do it thru blockui plugin
You can do this natively with BlockUI: http://jquery.malsup.com/block/#element
$('div.test').block({ message: null })
$.blockUI({
message: $("#divid"),
css: {
position: 'absolute',
}
});
精彩评论