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

Q1581 In Netscape 4 and 4.5 on the Mac, resizing a window causes links in the window to lose their onClick actions

irt.org | Knowledge Base | JavaScript | Bugs | Q1581 [ previous next ]

Q1581 In Netscape 4 and 4.5 on the Mac, resizing a window causes links in the window to lose their onClick actions

The following script works to fix it:

<script langyage="JavaScript1.2"><!--
window.onresize = function () {
    for (var i=0; i<document.links.length; i++) {
        document.links[i].onclick = document.links[i].onclick;
    }
}
//--></script>

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.