You are here: irt.org | FAQ | JavaScript | Frame | Q316 [ previous next ]
The following does not work:
<FORM METHOD=POST> <INPUT TYPE="button" VALUE="Close this Window" onClick="window.close();"> </FORM>
Whereas the following does:
<FORM METHOD=POST> <INPUT TYPE="button" VALUE="Close this Window" onClick="top.close();"> </FORM>