Can someone give me a push in the right direction here.
Russ said he had one frame referencing another fine in an email i posted last week but i just can't get it working.
 
1 page to set 2 frames. 1 htm page in each frame. Frame A with a form and Frame B trying to read the data in Frame A.
It works in IE but not in Netscape. (top.frame_a.form_a has no properties)
I couldn't get it to work with getElementId() either. It kept saying it wasn't a function ?!?!
 
Aaaaggh its Monday again.
 
Thanks
Allan
---------------------------
 
 
index.htm
---------
<html>
 
<frameset cols="*,*" framespacing="0" border="0" frameborder="0">
  <frame name="frame_a" src="" scrolling="no" marginwidth="0" marginheight="0" noresize>
  <frame name="frame_b" src="" scrolling="no" marginwidth="0" marginheight="0" noresize>
</frameset>
 
</html>
 
a.htm
------
<HTML>
<BODY>
Frame A
<P>
<FORM ACTION="" METHOD="post" NAME="form_a">
 <INPUT TYPE="Text" NAME="field_a" VALUE="Test String">
</FORM>
</BODY>
</HTML>
 
b.htm
------
<HTML>
<BODY>
Frame B
<P>
<FORM ACTION="" METHOD="post" NAME="form_b">
 <INPUT TYPE="button" NAME="button_b" VALUE="Test" >
</FORM>
</BODY>
</HTML>

Reply via email to