Guest User

Untitled

a guest
Dec 13th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <script type="text/javascript">
  2. function printdiv
  3. var prtContent = document.getElementById("specific");
  4. var WinPrint = window.open('', '', 'left=0,top=0,width=800,height=900,toolbar=0,scrollbars=0,status=0');
  5. WinPrint.document.write(prtContent.innerHTML);
  6. WinPrint.document.close();
  7. WinPrint.focus();
  8. WinPrint.print();
  9. WinPrint.close();
  10. </script>
Add Comment
Please, Sign In to add comment