Is there anyway to automatically run javascript:window.print() when the page finishes loading?
javascript:window.print()
Use this script
<script type="text/javascript"> window.onload = function() { window.print(); } </script>