how to get drop down selected value in jQuery
how to get drop down selected value in jQuery Anonymous User 1128 18 Jun 2018 how to get drop down selected value in jQuery
Drop down value in jQuery :
HTML Markup consists of an HTML Select DropDownList and a Button.
For single select dom elements, to get the currently selected value:
$('#dropDownId').val();$('#dropDownId :selected').text(); // currently selected text
Ex: Select color:
Happy Coding :)