Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Netscape 6.0

Status
Not open for further replies.

raha

Programmer
Jan 9, 2001
11
US
Hi! Iam trying to modify a piece of code to make it work for netscape6.0. It was working fine with Netscape 4 and IE5.

p1.html:
---------
<SCRIPT LANGUAGE=&quot;JavaScript&quot; SRC=&quot;P1.JS&quot;>
</SCRIPT>
<FORM NAME=FORM104TOP METHOD=POST ACTION=&quot;p11.jsp&quot; TARGET=_self>
<INPUT TYPE=HIDDEN NAME=RC104TOP VALUE=&quot;TOP&quot;>
<INPUT TYPE=HIDDEN NAME=RC104NAME VALUE=&quot;P1&quot;>
<FRAMESET COLS=&quot;100%,*&quot; FRAMEBORDER=0 >
<FRAME NAME=FRAMEP1 SRC=&quot;P1_104.html&quot; SCROLLING=AUTO FRAMEBORDER=1>
</FRAMESET>
</FORM>

The above code doesn't work for 6.0. If I move the following two lines

<INPUT TYPE=HIDDEN NAME=RC104TOP VALUE=&quot;TOP&quot;>
<INPUT TYPE=HIDDEN NAME=RC104NAME VALUE=&quot;P1&quot;>

to the line after </FRAMESET>, it works in navigator 6.0. But in the P1.js file, it is not recognizing the following:

var pTop = eval('parent.document.FORM104TOP.RC104TOP');

Please give any suggestions to make it work on Navigator 6.0!


Thankyou!

 
why don't you move that form to another frame? jared@aauser.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top