Button to Print as PDF
<button type="button" onclick="printJS('docs/printjs.pdf')">
Print PDF
</button>
Button To print large PDF files
<button type="button" onclick="printJS({printable:'docs/xx_large_printjs.pdf', type:'pdf', showModal:true})">
Print PDF with Message
</button>
Button to Print base64 PDF
<button type="button" onclick="printJS({printable: base64, type: 'pdf', base64: true})">
Print PDF with Message
</button>
Leave a comment