To get the text of the selected option I do:
$("select option:selected").text()
How could I set an option based on it's text ?
|
feedback
|
|
This would work:
Example: http://jsfiddle.net/ADp6L/1/ | |||||||||
feedback
|
|
Clear the old selection out first and then loop through the options, canceling the loop once the correction option is found.
| |||
feedback
|