I am showing a pdf inside a html using:
<script type="text/javascript"> function printPDF(pdfUrl) { var w = window.open(pdfUrl); w.print(); } </script>
You can call this function printPDF("http://mywebsite.com/myfile.pdf")
printPDF("http://mywebsite.com/myfile.pdf")