JavaScript Tutorial - 8 - possible answer to Task 22
<html> <head> <title>Say Hello</title> <script> function say_hello() { var win=window.open("","","width=100,height=100") win.document.write("Hello World") win.document.close() } </script> </head> <body> <form> <input type=button value="say hello" onClick=say_hello()> </form> </body> </html>
HOME Table of Contents