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 biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Loading two frames in same page when item is selected

Status
Not open for further replies.

huskers

Programmer
Jan 29, 2002
75
US
I am new to javascript. I have a drop down menu which contains some items. When one of them is selected i want some data to be displayed dynamically in two frames just below the drop down menu in the same page. Can any one tell me how I can do it. Thanks in advance.
 
Find the onclick, or onchange (for a <select>), or whatever triggers the page loading, and insert something like this:

onclick="window.frame1name.location=page1.html;window.frame2name.location=page2.html;"

Rick

-----------------------------------------------------------
RISTMO Designs
Arab Church
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top