how to make option selected in jquery as text code example
Example 1: how to get the selected text of dropdown in jquery
BY LOVE
$("#Id option:selected").text()
Example 2: select option value jquery
$("select.country").change(function(){
var selectedCountry = $(this).children("option:selected").val();
alert("You have selected the country - " + selectedCountry);
});