fauzanjeg

Fix Image Thumnbail to Small

Jun 21st, 2021 (edited)
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.26 KB | None | 0 0
  1. /* Fix Image Thumnbail to Small */
  2. (function ($) {
  3.     $(window).ready(function () {
  4.         var img = $('.thumbnail-container img');
  5.         $.map(img, function (n) {
  6.             var repalce = $(n).attr('src').replace(/-75x75/g, '');
  7.             $(n).attr('src', repalce);
  8.         })
  9.     })
  10. })(jQuery);
Add Comment
Please, Sign In to add comment