travisbrown
Technical User
- Dec 31, 2001
- 1,016
Is there such a thing as below? Seems like this should work the same way I can call the selected index value using this.value.
Code:
<select onchange="alert(this.text);" id="aaa">
<option value="123">1</option>
<option value="234">2</option>
<option value="345">3</option>
<option value="456">4</option>
</select>