Como buscar o valor selecionado do suspensão jQuery
BY LOVE
$('#ddlName option:selected').val();
Nice Nightingale
BY LOVE
$('#ddlName option:selected').val();
$("select.country").change(function(){
var selectedCountry = $(this).children("option:selected").val();
alert("You have selected the country - " + selectedCountry);
});