Advertisement
Guest User

Untitled

a guest
Nov 1st, 2014
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. function printpage() {
  2. var data = '<script>alert("Print window");</script><table border="1" cellspacing="0"><tr><td colspan="4">Sample Report</td></tr>' + document.getElementsByTagName('table')[0].innerHTML + '</table>';
  3. data += '<br/><button onclick="window.print()" class="noprint">Print the Report</button>';
  4. data += '<style type="text/css" media="print"> .noprint {visibility: hidden;} </style>';
  5. myWindow = window.open('', '', 'width=800,height=600');
  6. myWindow.innerWidth = screen.width;
  7. myWindow.innerHeight = screen.height;
  8. myWindow.screenX = 0;
  9. myWindow.screenY = 0;
  10. myWindow.document.write(data);
  11. myWindow.focus();
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement