Reputation: 11247
Anyone knows a JQuery plugin for BlockUI that allows blocking a specific DIV, not just the whole page. Thanks.
Upvotes: 8
Views: 22668
Reputation: 126082
You can do this natively with BlockUI: http://jquery.malsup.com/block/#element
$('div.test').block({ message: null })
Upvotes: 10