lozad.js icon indicating copy to clipboard operation
lozad.js copied to clipboard

Lazy load images are missing for print page for all browsers

Open YHartonuk opened this issue 3 years ago • 1 comments

Lazy load images are missing for print page for all browsers

YHartonuk avatar Oct 27 '21 05:10 YHartonuk

You can add the "window.onbeforeprint" function:

// Handle Lazy loading on page print
window.onbeforeprint = function() {
   $('.lozad').each(function() {
       var src = $(this).attr('data-src');
       $(this).attr('src', src).parent().addClass('loaded');
    });
};

fintinc avatar Jan 31 '23 10:01 fintinc