lozad.js
lozad.js copied to clipboard
Lazy load images are missing for print page for all browsers
Lazy load images are missing for print page for all browsers
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');
});
};