I am doing with jqModal plugin. I need to disable the outer overlay and make the popup stable. So that, until “close” button is clicked, the popup should be showing consistently.
Code so far I tried (the commented options are unable to produce the expected effect) :
$(document).ready(function() {
$('#dialog').jqm(
/* {
overlay : 100%,
modal : false
}*/
);
});
Following from comments to close this thread.
To disable overlays modal exit event jqModal has to have 2 settings:
Full example at fiddle