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

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

You are here: irt.org | FAQ | JavaScript | Bugs | Q1581 [ previous next ]

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>

©2018 Martin Webb