Facebook
From Buff Bongo, 3 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 75
  1. jQuery("a[href$='.jpg'],a[href$='.png'],a[href$='.gif']").each(function(index) {
  2.         if (jQuery(this).attr('no-data-lightbox')) {
  3.           // alert('dsaibled');
  4.           // $(this).attr('data-lightbox', '');
  5.           return false;
  6.         }
  7.         if (typeof(jQuery(this).attr('data-lightbox')) === 'undefined') {
  8.           jQuery(this).attr('data-lightbox', 'lightbox');
  9.         }
  10.   });