Problem with anchors (Netscape 4.79)

admin

Administrator
Staff member
Don't ask why I have to support Net4.79 - I just have to. The following problem does not occur in IE 5.5<br />
<br />
Basically I have a link to a named anchor that loads in a new window, i.e.:<br />
<br />
<a href=http://www.htmlforums.com/archive/index.php/"../glossary.html#course_management" onClick="javascript:glossary=window.open(this.href,'glossary','height=300,width=600,left=20,top=20,status=yes ,scrollbars=yes,resizable=yes');glossary.focus();return false;" target=glossary>course management system</a><br />
<br />
Then, in glossary.html I have:<br />
<br />
<td valign="top" bgcolor="white"><a name="course_management"><em>Course management system</em></a></td><br />
<br />
<br />
There are hundres of links throught this site like this. A number of things occur in Netscape 4.79:<br />
1) It goes to where its supposed to - perfect<br />
2) It goes there, but slightly below it - about an entire line<br />
3) It goes there, but half-way into the text - i.e. about 5-10 pixels?<br />
<br />
This is totally random. Any clues? Is this a known problem in Netscape 4.79?<!--content-->At least I don't like your code at all, try this one:<br />
<br />
<a href=http://www.htmlforums.com/archive/index.php/"#" onClick="window.open('../glossary.html#course_management', '_blank', 'height=300,width=600,left=20,top=20,status=yes,scrollbars=yes,resizable=yes'); return false;">course management system</a><!--content-->k - tried that. as usual, works in IE 5.5, but still the same results in Netscape 4.79<!--content-->Note that if I remove the javascript entirely, the link works fine!<br />
<br />
The javscript needs to be accessible. It was built using a tool on accessify.com (<!-- m --><a class="postlink" href="http://www.accessify.com/tools-and-wizards/pop-up-window-generator.asp">http://www.accessify.com/tools-and-wiza ... erator.asp</a><!-- m -->)<!--content-->do you have a link that shows this? I can't see the javascript doing anything like that.<!--content-->
 
Back
Top