Answers for "dropdownlist selected value in jquery"

7

how to get the value of dropdown in jquery

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

jquery get selected dropdown item

// dropdown for company selection
var company = $('#CountryCode').find('option:selected').text();
Posted by: Guest on January-05-2022
0

jquery: get selected option of the drop down list

$('#ddlID').val();
$('#ddlID').text();
Posted by: Guest on June-28-2020

Code answers related to "dropdownlist selected value in jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language