0

Disable external click the fancybox popup

How could disable the close button outside the popup div

Using:

http://fancyapps.com/fancybox/

Raul Valverde
  • 587
  • 4
  • 11
  • this might be what you are looking for http://stackoverflow.com/a/8404587/1055987 – JFK Oct 12 '12 at 17:08

2 Answers2

3

set the modal true to disable closing when click outsite the modal div

$('.fancybox').fancybox({
            modal :  true
        });
loQ
  • 2,147
  • 18
  • 21
  • this may help you more http://stackoverflow.com/questions/1363806/jquery-fancybox-prevent-close-on-click-outside-of-fancybox – loQ Oct 12 '12 at 15:25
  • @Raul : the links of reference are outdated, better check http://stackoverflow.com/a/8404587/1055987 – JFK Oct 12 '12 at 17:11
1
closeBtn     
  If set to true, close button will be displayed    
  Boolean; Default value: true

read the documentation

no1lov3sme
  • 682
  • 1
  • 5
  • 14
  • 1
    he meant external click not just to hide the close button. Read again the documentation – loQ Oct 12 '12 at 14:57