Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

Q1468 How do I get the value of a selection in a drop down list in one frame to fill in a text box in another frame?

You are here: irt.org | FAQ | JavaScript | Form | Q1468 [ previous next ]

Try:

<form>
<select onChange="top.otherframe.document.otherform.textfield.value=this.options[this.selectedIndex].value;">
<option>...
</select>
</form>

©2018 Martin Webb