$(document).ready(function() { $('img').each(function() { if ($(this).parent().hasClass('fancybox')) return; if ($(this).hasClass('nofancybox')) return; var alt = this.alt; if (alt) $(this).after('' + alt + ''); $(this).wrap(''); }); $(this).find('.fancybox').each(function(){ $(this).attr('rel', 'article'); }); }); $(document).ready(function() { $("a[href$='.jpg'],a[href$='.png'],a[href$='.gif'],a[href$='.webp']").attr('rel', 'gallery').fancybox({ helpers : { title: { type: 'inside'} } }); });