have a function in the frame1 which calls functions in the frame2-frame...
<frameset>
<frame1>
<frame2>
<frame3>
</frameset>
<frame1>
function... onSubmit
{
parent.frames["frame1"].SetValues(somevalue)
parent.frames["frame2"].SetValues(somevalue)
}
</frame1>
<frame2>
function... SetValues(somevalue)
{
use your somevalue
}
</frame2>
<frame3>
function... SetValues(somevalue)
{
use your somevalue
}
</frame3>
hope it helps
-----Original Message-----
From: Jaya John [mailto:jaya_john@h...]
Sent: Friday, August 17, 2001 11:33 AM
To: javascript
Subject: [javascript] updating more tha one frame at the same time
Hello,
I have a three frames.In the parent frame I submit a form,I need to
display the results of the criteria selected in frame1 to update and
display the results in frame2 and
frame3 at the same time when the form in frame 1 is submitted.
Thanks in advance
Jaya