[jQuery] serializeArray() function and select tags

[jQuery] serializeArray() function and select tags


hey fellow jQuery-ers,
I've noticed this small thing using the serializeArray() on a form.
consider the following html:
<html>
<head>
</head>
<body>
<form id="frmFoo">
<select id="mySelect">
<option value="0">add</option>
<option value="1">edit</option>
<option value="2">whatever</option>
</select>
</form>
</body>
</html>
it has a simple form with a select tag. nothing fancy here.
I want to serialize the form's input values so I do this in firebug: