Luciano Pereira
Luciano Pereira

Reputation: 11

Fancybox 2.0.5 hideOnContentClick

How can I use hideOnContentClick in fancybox 2.0.5?

'hideOnContentClick': true

Thanks

Upvotes: 1

Views: 2191

Answers (1)

JFK
JFK

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

Related Questions