8

Anyone knows a JQuery plugin for BlockUI that allows blocking a specific DIV, not just the whole page. Thanks.

Liron Harel
  • 10,819
  • 26
  • 118
  • 217

3 Answers3

11

You can do it thru blockui plugin

Mrchief
  • 75,126
  • 20
  • 142
  • 189
10

You can do this natively with BlockUI: http://jquery.malsup.com/block/#element

$('div.test').block({ message: null })
Andrew Whitaker
  • 124,656
  • 32
  • 289
  • 307
2
$.blockUI({
  message: $("#divid"),

  css: {
    position: 'absolute',
  }
});
Mrchief
  • 75,126
  • 20
  • 142
  • 189
Soni
  • 21
  • 1