Search Results

2
votes

jQuery val() on HTML Select Text takes precedence over Value

When selecting options jQuery looks first at the value then at the text of an option. It also goes through options in order. So, $('#selValues').val('3') selects options 3 first, but r …