Snippi
A super awesome snippet tool.
- 1.
$('a').each(function(){ - 2.
if(this.href.match(/\.(jpe?g|png|bmp|gif|tiff?)$/i) && ( !$(this).hasClass('primeGalleriesLink')) && ( !$(this).parent().hasClass('ngg-gallery-thumbnail') ) ) { - 3.
if( $(this).attr('rel') != 'prettyPhoto[gallery]' ){ - 4.
$(this).attr('rel', 'prettyPhoto'); - 5.
} - 6.
} - 7.
})