Advertisement
puntorosso

Print new browser window

May 4th, 2021
956
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.30 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function openNewWindow(){
  5. var newWindow=window.open('redir2.html');
  6. newWindow.focus();
  7. newWindow.print();
  8. newWindow.close();
  9. }
  10. </script>
  11. </head>
  12. <body>
  13.  
  14. <input type="button" value="Open new window" onclick="openNewWindow()" />
  15.  
  16. </body>
  17. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement