THANK YOU!
it worked!
I just added a form button and in the HTML line of the button I added
"onClick="javascript:window.close()""
Thanks a bunch!
| Hi,
|
| Try thses two lines of code for a Button and normal text link.
|
| Close Window
| ~~~~~~~~~~~~
| <form><input type=button value="Close Window"
| onClick="javascript:window.close();"></form>
|
|
| Close Window
| ~~~~~~~~~~~~
| <a href="javascript:window.close();">Close Window</a>
|
|
| All the best,
| Martin.
|
|
|
| | > Does anybody know how to insert a "close window button" ?
| > Basicaly, a button that will close the current window.
| >
| > Thanks!
| >
| >
|
|