I want to prevent colorbox close on cboxOverlay click
I'm using this code:
$.fn.colorbox({ overlayClose: false });
But it doesn't work.
I also disabled Esc close
$(document).bind("keydown.cbox_close", function (e) {
if (e.keyCode === 27) {
e.preventDefault();
cboxPublic.close();
}});
Esc code working properly .
But how to prevent colorbox close for overlay?
Thanks
I want to prevent colorbox close on cboxOverlay click
I'm using this code:
$.fn.colorbox({ overlayClose: false });
But it doesn't work.
I also disabled Esc close
$(document).bind("keydown.cbox_close", function (e) {
if (e.keyCode === 27) {
e.preventDefault();
cboxPublic.close();
}});
Esc code working properly .
But how to prevent colorbox close for overlay?
Thanks
Shouldn't it be:
$.colorbox({ overlayClose: false });
See working demo here: Fiddle