ajax-loader  Loading... Please wait...
Sort by:
There are no products in this category.

function isValidUrl(url) { try { new URL(url); return true; } catch (e) { return false; } } function load_lazy_images(){ console.log('loading lazy images fix'); $('img.lazy').each(function (e) { if($(this).attr('data-src') !== $(this).attr('src') && isValidUrl($(this).attr('data-src'))){ $(this).attr('src', $(this).attr('data-src')); } }) } load_lazy_images(); $(function(){ load_lazy_images(); })