Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I tried to put a blockui on top of another blockui, and it works (provided the baseZ value is higher for the second blockui of course)

The problem is when I want to close the top-most blockui with the $.unblockUI(); call, both close.

Is there a way to set a namespace or context? I did not find anything related so far on the web.

share|improve this question
I've used this technique and it works like a charm in Opera, FF, Chrome, Safari and even IE9, but it does not work at all on IE8. Can anyone confirm that it's working on IE8? Maybe there's something wrong with my code, but before I start digging I want to make sure it's not a IE bug. Thanks in advance. – Cristian Mironiuc Sep 18 '12 at 12:55

1 Answer

Without knowing specifics, I assume you are calling full page $.block() and $.unblock().

On the second blockUI, don't make it a full page (default) block but instead assign it to the specific DIV or jqModal dialog or whatnot that you show on the first blockUI.

You can then control the block/unblock specific to the second.

$.blockUI({ message: $('#test') });

$('#test').block( { message: $('#test2') } );
$('#test').unblock(); 

$.unblockUI();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.