dizballanze

Untitled

Feb 13th, 2013
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. function openWin3() {
  2. myWin= open("", "displayWindow",
  3. "width=500,height=400,status=yes,toolbar=yes,menubar=yes");
  4.  
  5. // открыть объект document для последующей печати
  6. myWin.document.open();
  7.  
  8. // генерировать новый документ
  9. myWin.document.write("<html><head><title>On-the-fly");
  10. myWin.document.write("</title></head><body>");
  11. myWin.document.write("<center><font size=+3>");
  12. myWin.document.write("This HTML-document has been created ");
  13. myWin.document.write("with the help of JavaScript!");
  14. myWin.document.write("</font></center>");
  15. myWin.document.write("</body></html>");
  16.  
  17. // закрыть документ - (но не окно!)
  18. myWin.document.close();
  19. }
Advertisement
Add Comment
Please, Sign In to add comment