Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

Q1681 How can I close an entire frameset with with a button link or text link?

You are here: irt.org | FAQ | JavaScript | Window | Q1681 [ previous next ]

Try either:

<form>
<input type="button" value="Close" onClick="top.close()">
</form>

or:

<a href="javascript:' '" onClick="top.close()">Close</a>

Feedback on 'Q1681 How can I close an entire frameset with with a button link or text link?'

©2018 Martin Webb