Popup window with window.open
|
|
<html> <head> <script language="JavaScript" type = "text/javascript"> <!-- function GreetingWin() { DisplayGreeting = window.open("", "_blank", "toolbar=no, status=no, width=200,height=200"); greeting = "<b>Good Morning!</b>" DisplayGreeting.document.write(greeting); } //--> </script> </head> <body> <input type="button" value="Click Button" onClick="GreetingWin()"> </body> </html>
|
|
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
-
|
|