function printPDFfromURL(pdf) { var iframe = document.createElement('iframe'); iframe.style.display = 'none'; document.body.appendChild(iframe); iframe.onload = function() { iframe.contentWindow.print(); setTimeout(()=>{ iframe.remove() }, 60000); }; iframe.src = pdf; } //use: // printPDFfromURL("http://localhost/path_pdf.pdf");