How to print a PDF in Firefox?
This function works in Chrome but not in Firefox
function print_pdf(url){
var id = \'iframe\', html = \'
Print a pdf with javascript or jquery
Create a iframe in html:
Then change the src of that iframe and on load, print it:
$('#pdf-iframe').attr("src", pdf_url).load(function(){
document.getElementById('pdf-iframe').contentWindow.print();
});
Or, you might want to try https://mozilla.github.io/pdf.js/