Skip to content Skip to sidebar Skip to footer

Fancybox, How To Skip Element On Clicking Next Or Previous?

I want to know if there is a method to skip en element from cycling(next,prev) without defining a class or a group. A quick sample. $('a').fancybox(); That would call fancy on eac

Solution 1:

what about $('a:not(.skip)').fancybox();


Post a Comment for "Fancybox, How To Skip Element On Clicking Next Or Previous?"