B
Bruce A. Julseth
How do I emulate the web page "Close" Button, i. e. the "X" in the upper
right hand corner of each web page?
Thank you....
Bruce
right hand corner of each web page?
Thank you....
Bruce
DI said:With text:
<a href="javascript:window.close();">Close This Window</a>
With a button:
<form>
<input type=button value="Close This Window" onClick="javascript:window.close();">
</form>