Feb 6, 2003 #1 maverick MIS Apr 21, 1999 193 US Hate to sound ignorant...but Does anyone know how to Close a Web Browser Window ? I'm a vb guy and don't know html that good... Thanks all... ;-) "Hacker by Heart" saenzcorp@hotpop.com
Hate to sound ignorant...but Does anyone know how to Close a Web Browser Window ? I'm a vb guy and don't know html that good... Thanks all... ;-) "Hacker by Heart" saenzcorp@hotpop.com
Feb 6, 2003 #2 jlsmithhartfiel Programmer Jan 7, 2002 336 US <script language=javascript> function doThis { window.close(); } </script> <form> <input type=button value="close" onclick="doThis();"> </form> Jessica Upvote 0 Downvote
<script language=javascript> function doThis { window.close(); } </script> <form> <input type=button value="close" onclick="doThis();"> </form> Jessica
Feb 7, 2003 2 #3 cian Technical User Oct 11, 2001 1,383 Also: close a pop-up: <form name="closer"> <input type=button value="Close" onClick="self.close()"> </form> close main window without alert: <head> <script> function closewindow() { self.opener = this; self.close() } </script> </head> <body> <a href="JavaScript: closewindow()">Close Window</a> É :: http://www.endamcg.com Upvote 0 Downvote
Also: close a pop-up: <form name="closer"> <input type=button value="Close" onClick="self.close()"> </form> close main window without alert: <head> <script> function closewindow() { self.opener = this; self.close() } </script> </head> <body> <a href="JavaScript: closewindow()">Close Window</a> É :: http://www.endamcg.com
Feb 7, 2003 #4 vvlad Programmer May 27, 2002 151 DE --- close main window without alert --- That was a really good tip, Cyan. vlad Upvote 0 Downvote
Feb 7, 2003 #6 cian Technical User Oct 11, 2001 1,383 Go raibh maith agaibh, thanks! It was probably posted here before anyway É :: http://www.endamcg.com Upvote 0 Downvote
Feb 7, 2003 Thread starter #7 maverick MIS Apr 21, 1999 193 US Thanks Guys !!!!! ;-) "Hacker by Heart" saenzcorp@hotpop.com Upvote 0 Downvote
Feb 8, 2003 #8 y2k1981 Programmer Aug 2, 2002 773 IE >>Go raibh maith agaibh, thanks! Ta se failte romhat. dunno if I spelt that right!!? Upvote 0 Downvote
Feb 9, 2003 #9 cian Technical User Oct 11, 2001 1,383 >>dunno if I spelt that right!!? Almost, Tá fáilte romhat. É :: http://www.endamcg.com Upvote 0 Downvote