Answers for "get selected value of dropdown in jquery"

3

how to get the value of dropdown in jquery

BY LOVE
$('#ddlName option:selected').val();
Posted by: Guest on May-08-2020
1

get selected option jquery

$( "#myselect option:selected" ).text();
Posted by: Guest on October-06-2020
8

select option value jquery

$("select.country").change(function(){
  var selectedCountry = $(this).children("option:selected").val();
  alert("You have selected the country - " + selectedCountry);
});
Posted by: Guest on February-19-2020
1

jquery get selected option value

$("select.your-select").change(function(){ 
	$(this).children("option:selected").val();
});
Posted by: Guest on September-10-2020
1

jquery get value of selected option

$( "#myselect option:selected" ).val();
Posted by: Guest on July-13-2020
1

get text in select jquery

$("#id option:selected").text();
Posted by: Guest on May-01-2020

Code answers related to "get selected value of dropdown in jquery"

Browse Popular Code Answers by Language