Advertisement
arie_cristianD

hide thumb loader when image empty

Dec 12th, 2024
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (function ($) {
  2.  
  3.     var thumb = $('.jeg_thumb .thumbnail-container.animate-lazy');
  4.     thumb.each(function () {
  5.         console.log($(this));
  6.         if ($(this).find("img").length == 0) {
  7.             $(this).addClass('thumb-empty');
  8.         }
  9.     });
  10.  
  11.  
  12. })(jQuery);
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement