In fancyBox 2, is there a key/value I could set that will disable the lightbox from closing when the user clicks the background (semi-transparent black background)?
To prevent close button- use:
defaults: { closeBtn : false,}
To prevent overlay close - use :
F.helpers.overlay = {
defaults : {closeClick : false, // if true, fancyBox will be closed when user clicks on the overlay }}
To prevent escape click close :
defaults: {keys : {//close : [27], // escape key
close : null, } }