How can I get the selected value of a dropdown box using jQuery? I tried using
var value = $(\'#dropDownId\').val();
and
Try this, it gets the value:
$('select#myField').find('option:selected').val();