On Wed, Jan 20, 2010 at 12:34 AM, Mateo <matthew.kim...@gmail.com> 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