Getting select option name not value
Hello,
i have a select statement
<select name ="cars">
<option value ="1">Ford</option>
<option value ="2">Holden</option>
<option value ="3">Nissan</option>
</select>
In my javascript i want to be able to request the name of the selected item (eg Ford) not the value.
Any suggestions would be appreciated
Chris
|