Multi modal jquery plugin
Ever needed to have a modal window appear in your page, but you also need one more that pops on top of it? Well, that’s what this jQuery plugin does.
It makes it possible to have multiple modals running at the same time. It doesn’t work on IE (haven’t tested it but it should give some problems) but otherwise works well.
Use it like this to open:
jQuery(selector).modal();
To close it a spceific modal:
jQuery(selector).modalClose();
To close the highest modal:
jQuery.modal.close();
