Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function openWin3() {
- myWin= open("", "displayWindow",
- "width=500,height=400,status=yes,toolbar=yes,menubar=yes");
- // открыть объект document для последующей печати
- myWin.document.open();
- // генерировать новый документ
- myWin.document.write("<html><head><title>On-the-fly");
- myWin.document.write("</title></head><body>");
- myWin.document.write("<center><font size=+3>");
- myWin.document.write("This HTML-document has been created ");
- myWin.document.write("with the help of JavaScript!");
- myWin.document.write("</font></center>");
- myWin.document.write("</body></html>");
- // закрыть документ - (но не окно!)
- myWin.document.close();
- }
Advertisement
Add Comment
Please, Sign In to add comment