Reputation: 11
How can I use hideOnContentClick in fancybox 2.0.5?
'hideOnContentClick': true
Thanks
Upvotes: 1
Views: 2191
Reputation: 41143
Fancybox v2.x are new and not compatible with previous versions. hideOnContentClick
has been replaced by closeClick
. If you also want to prevent closing fancybox when clicking on the overlay, then use the helpers
=> overlay
=> closeClick
option like:
$(document).ready(function() {
$(".fancybox").fancybox({
closeClick : false,
helpers : {
overlay : {closeClick: false}
}
});
});
Upvotes: 3