Skyscrapercity Disable Lazyload

Disables image lazy loading on skyscrapercity.com

< Feedback on Skyscrapercity Disable Lazyload

Question/comment

§
Posted: 12. 10. 2024
Edited: 12. 10. 2024

Needs a fix - image.classList.add('lazyloaded');, so pictures will be correctly placed on the screen.

(function() {
    'use strict';

    let images = document.querySelectorAll('img.bbImage.lazyload');

    [].forEach.call(images, function(image) {
        image.classList.remove('lazyload');
        image.setAttribute('src', image.getAttribute('data-src'));
        image.classList.add('lazyloaded');
    });
})();

Post reply

Sign in to post a reply.