Saltar al contenido
Filtrar
  • Ordenar por

Drawer Title
Productos similares
// Lazy loading optimization - The Brands Club document.addEventListener('DOMContentLoaded', function() { // Add loading="lazy" to all images below-the-fold const images = document.querySelectorAll('img:not([loading])'); const heroSection = document.querySelector('#shopify-section-template--20877705937124__slider_kWNFeD, [id*="slider"]'); images.forEach(function(img) { // Skip hero slider images (first section) const isInHero = heroSection && heroSection.contains(img); if (!isInHero && !img.hasAttribute('loading')) { img.setAttribute('loading', 'lazy'); } }); });