From: Cameron H. <ca...@bi...> - 2000-12-07 16:20:43
|
> try > > <a href=# > onclick="LoadPanel.findLoadPanel(this).setURL('newpage.html');retu > rn false">click > me</a> No cigar, Netscape is still having the same problem :-( > Also - you know that in Netscape and IE links are in different > places - different documents. Netscape is document.links isn't it? Netscape works properly if I construct the link this way: <a href="javascript: objectRef.setURL('newpage.html')">link</a> The problem is a "this" object reference in the onClick is different to a "this" object reference in the href. The onclick reference is within the link text in the Layer, the href reference is in the root document (the DynDocument). I haven't worked out how to find the LoadPanel from the href reference. |