script> // Only improve image quality and enable lazy loading, excluding slider images document.addEventListener("DOMContentLoaded", function() { var images = document.querySelectorAll("img"); images.forEach(function(img) { // Exclude slider images that have the "slider" class if (!img.classList.contains("slider")) { // Upgrade image quality to the highest img.src = img.src.replace(/s[0-9]+/, "s1600"); // Enable lazy loading img.loading = "lazy"; } }); });

ABOUT US


0 comments: