How can I get the selected value of a dropdown box using jQuery? I tried using
var value = $(\'#dropDownId\').val();
and
Or if you would try :
$("#foo").find("select[name=bar]").val();
I used It today and It working fine.