Home Articles FAQs XREF Games Software Instant Books About Feedback Search Site-Map
irt.org logo

Q1299 Why does Internet Explorer not close the window with this button?

irt.org | Knowledge Base | JavaScript | NotABug | Q1299 [ previous next ]

Q1299 Why does Internet Explorer not close the window with this button?

Affects: Internet Explorer 5.x 5.x

close is a reserved word, rename the form

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

should be:

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

Submitted by Michel Plungjan


Provide feedback ...
AddThis Social Bookmark Button

Provide feedback ... AddThis Social Bookmark Button


Last Updated: 30th March 2008. Maintained by: Martin Webb and Michel Plungjan
irt.org liability, trademark, document use, privacy statement and software licensing rules apply.
Copyright © 1996-2008 irt.org, All Rights Reserved.