I'm here with a question on the new jQuery 1.6
It seems to me that the .val() function have been changed since jQuery 1.5.2.
In fact when I call it on a select's option to get his value now I get the text.
Let's make an example:
<option value="1">john</option>
When I call
$('select').val();
with jQuery 1.5.2 I get 1 while with jQuery 1.6 I get john
Now I know they changed behavior of .attr() and introduced .prop() but at this link I'm not able to find anything about .val() (maybe I'm just blind or my English sucks).
Anyway, here is an example which shows this difference and what I've tried so far to get the option's value, just switch from jQuery 1.6 to jQuery 1.5.2 to see.
Now the question is, how do I get an option's value with jQuery 1.6?
