[jQuery] Re: How to solve problem with zindex and active elements

2007-09-07 Thread Mario Moura
Hi Other solution could de CSS overflow: http://www.w3schools.com/css/pr_pos_overflow.asp Regards Mairo 2007/9/4, Dan Evans <[EMAIL PROTECTED]>: > > > You could add a click event that only gets fired once to the the mask. > Something like: > $('#maskID').one('click', function(){ > $(th

[jQuery] Re: How to solve problem with zindex and active elements

2007-09-04 Thread Dan Evans
You could add a click event that only gets fired once to the the mask. Something like: $('#maskID').one('click', function(){ $(this).remove(); }); That would take the mask away when the user clicks it. $(this).remove(); could also be $(this).hide() if you might re-use it later. Another sol