Guest User

Untitled

a guest
Jan 17th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <div class="item" title="Image" data-href="image.jpg" data-rel="prettyPhoto">
  2. <img alt="image" src="thumb.jpg" /></div>
  3.  
  4. $('#gallery').on('click', '.item:not(.active)', function (e) {
  5. e.preventDefault();
  6. e.stopPropagation();
  7. });
  8.  
  9. $('.item[data-href]').each(function() {
  10. $(this).attr('href', $(this).attr('data-href'));
  11. });
  12.  
  13. $(".item").prettyPhoto();
  14.  
  15. $('.item:not(.active)').off('click');
Add Comment
Please, Sign In to add comment