On Wed, Jan 20, 2010 at 12:34 AM, Mateo <[email protected]> wrote: > var selectedId = $("#mySelectElement").val();
Returns the value of the select element but you want the value of the
selected option element under the select, hence:
> var selectedId = $("#mySelectElement :selected").val();
Nathan

