Jump to content

[SOLVED] DOM and frames...


noon

Recommended Posts

I can't seem to figure out what the correct DOM path is, or the DOM in general really.  I've read it over and over but I cannot navigate for the life of me.  If you have a good DOM reference please share it with me as I cannot figure it out.

 

Anyways, I have a page with frames and each frame has its own form.  I want to use some javascript in one frame to submit the forms in all the other frames.

 

My HTML structure is like this:

 

<html><head></head>
<frameset rows="50%,50%">
  <!-- Top row -->
  <frame src="pxlF.html" name="main" id="main1">
  <!-- Bottom rows -->
  <frameset cols="16%,16%,16%,16%,16%,16%">
    <frame src="frames/08142007_121920/frame_0.html" name="A">
    <frame src="frames/08142007_121920/frame_1.html" name="B">
    <frame src="frames/08142007_121920/frame_2.html" name="C">
    <frame src="frames/08142007_121920/frame_3.html" name="D">
    <frame src="frames/08142007_121920/frame_4.html" name="E">
    <frame src="frames/08142007_121920/frame_5.html" name="F">
  </frameset>
</html>

 

Frames A thru F contain forms.  Help appreciated...

Link to comment
https://forums.phpfreaks.com/topic/64878-solved-dom-and-frames/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.