Anyone knows a JQuery plugin for BlockUI that allows blocking a specific DIV, not just the whole page. Thanks.
Block UI Jquery plugin for a specific DIV
Asked Answered
You can do it thru blockui plugin
Wasn't quick enough! @Andrew beat me with the same answer. :) –
Luik
You can do this natively with BlockUI: http://jquery.malsup.com/block/#element
$('div.test').block({ message: null })
How about if I want to block everything except one div. I tried $('div.grid_12').not('#mydiv').block({ message: null }); and everything still gets blocked. –
Weekday
@codecowboy: Seems like that'd be a good candidate for a new question
:)
–
Woolfell $.blockUI({
message: $("#divid"),
css: {
position: 'absolute',
}
});
© 2022 - 2024 — McMap. All rights reserved.