-
Anyone know how to get whatever is inbetween the <OPTION> and </OPTION> tags? My value is set to te_id, a cell from my database but I also need to return the value the person sees inside the select box. I was thinking of doing a hidden form and doing an onchange on the select box, but I need to find out how to grab that value inside the tags. Thanks for any help you guys can offer.
-
You know what? I had the EXACT same problem not more than 3 hours ago. I found out that each tag has to have a VALUE property set.
Example:
Code:
<Option value="firstoption">firstoption</Option>
<Option value="secondoption">secondoption</Option>
<Option value="thirdoption">thirdoption</Option>
etc...
All you have to due is set the value as the same thing as the contents and it will return the contents as the value.
-
Yeah, I know that, I already had my values set as te_id, which is a database value... the things between the tags were te_event_name... what I ended up doing is making the value equal to te_id & te_event_name and splicing them apart client side.
-
Oh, that I know nothing about.
Sorry :(
-
That's ok, thanks for trying to help :)