hi...
i want to access to a combobox that is on a frame to know value, but from another frame.
basically, i have 2 frames. one with the combobox that i want to know the value and another where i need that value. how can i do this?
combobox text
Moderator: General Moderators
- John Cartwright
- Site Admin
- Posts: 11470
- Joined: Tue Dec 23, 2003 2:10 am
- Location: Toronto
- Contact:
- feyd
- Neighborhood Spidermoddy
- Posts: 31559
- Joined: Mon Mar 29, 2004 3:24 pm
- Location: Bothell, Washington, USA
javascript can do it fairly easy too, if that's what you are getting at.. something like:(from the frame wanting the info)
Code: Select all
var obj = top.frame2name.document.formname.combo_box_name;
var value = obj.optionsїobj.selectedIndex].value