Hello world!

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

1 thought on “Hello world!”

Comments are closed.

Scroll to Top
${clonedContainer.outerHTML} `); doc.close(); // Wait for images to load before printing let images = doc.querySelectorAll('img'); let loadedImages = 0; if (images.length === 0) { // No images, print immediately iframe.contentWindow.focus(); iframe.contentWindow.print(); setTimeout(() => document.body.removeChild(iframe), 1000); } else { // Wait for all images to load images.forEach(img => { img.onload = () => { loadedImages++; if (loadedImages === images.length) { iframe.contentWindow.focus(); iframe.contentWindow.print(); setTimeout(() => document.body.removeChild(iframe), 1000); } }; img.onerror = () => { loadedImages++; if (loadedImages === images.length) { iframe.contentWindow.focus(); iframe.contentWindow.print(); setTimeout(() => document.body.removeChild(iframe), 1000); } }; }); } }); });