Accessing applet element Mac and NS7.1
document.getElementById("theApplet");
freezes the NS 7.1 browser on Mac. Other workarounds such as the following fail as well.
var applets = document.getElementsByTagName("applet");
alert(applets.length); // returns 1, ok.
alert(applets[0]); // browser freezes here.
Accessing elements other than APPLET succeeds. There seems to be a very specific problem with trying to access APPLET in NS 7.1 on a Mac.
Do you have any ideas? Have you encountered this problem?

