jquery selected option

JavaScript
BY LOVE
$('#ddlName option:selected').val();$('#id option:selected').text()$("select.country").change(function(){
  var selectedCountry = $(this).children("option:selected").val();
  alert("You have selected the country - " + selectedCountry);
});$( "#myselect option:selected" ).val();$(".qualificationStatus option:selected").text()$('#dropDownId').val();
Source

Also in JavaScript: