Delay pop-up for 10 seconds, only pop up once

Actually, none of the solutions posted previously work in real life, why? because the line: $(“#various1”).fancybox(); doesn’t trigger fancybox, it just binds fancybox to the selector #various1, but it still needs a click to trigger the modal/lightbox (not a popup). BTW, GearĂ³id’s solution has syntax errors anyway. The only real value is that they suggest … Read more

Fancybox links don’t show in lightbox – what am i missing?

This href=”http://placehold.it/350×125″ doesn’t say to fancybox that you are opening an image so you either : 1). add the fancybox.image special class to your link like <a class=”cta-nav-hover fancybox fancybox.image” href=”http://placehold.it/350×125″ title=”Bio”><span></span></a> 2). add the (HTML5) data-fancybox-type attribute to your link like <a data-fancybox-type=”image” href=”http://placehold.it/350×125″ title=”Bio” class=”cta-nav-hover fancybox”><span></span></a> 3). add the type option to your … Read more

Fancybox doesn’t work with jQuery v1.9.0 [ f.browser is undefined / Cannot read property ‘msie’ ]

It seems like it exists a bug in jQuery reported here : http://bugs.jquery.com/ticket/13183 that breaks the Fancybox script. Also check https://github.com/fancyapps/fancyBox/issues/485 for further reference. As a workaround, rollback to jQuery v1.8.3 while either the jQuery bug is fixed or Fancybox is patched. UPDATE (Jan 16, 2013): Fancybox v2.1.4 has been released and now it works … Read more