I need a modal overlay that will block interaction with the rest of the page and is NOT CLOSABLE by the user, but can’t seem to find one where I don’t have to override existing functionality (like removing the X button or removing the esc-to-close feature).
Anyone know of a JQuery plugin or other JS library that can do this? Smaller + simpler is better…
Actually this is fairly straightforward to write myself (cover the entire page with a 100% transparent div), but it is harder to perfect (What if the user resizes the window? What about tabbing?). So ideally I’d use a plugin but I hate configuring plugins for my needs, since they seem to be never perfect for me!
http://developer.yahoo.com/yui/examples/container/panel-loading.html
Luckily I’m using YUI already, just overlooked this. Exactly what I want.