Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable overlay of jQuery simple modal popup plugin?

I am using plugin simple modal for showing popup in my site . I need to disable the overlay shown along with popup. is there any workaround ?Any help would be appreciated thanks

like image 438
Sandeep Avatar asked Dec 10 '25 13:12

Sandeep


2 Answers

Add this in you css. It will hide the overlay

#simplemodal-overlay{
   display: none !important;
}

To make sure it will always work add overlayId to simplemodal-overlay for all simplemodals you have in your site. like

$("#element-id").modal({
    overlayId : 'simplemodal-overlay'
});

Then overlay's id will always be simplemodal-overlay and the above css will work for all.

like image 67
Prasenjit Kumar Nag Avatar answered Dec 13 '25 03:12

Prasenjit Kumar Nag


try -

$('#simplemodal-overlay').hide();
like image 28
Dipak Avatar answered Dec 13 '25 03:12

Dipak



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!