dropdown get value jquery code example
Example 1: how to get the value of dropdown in jquery
BY LOVE
$('#ddlName option:selected').val();
Example 2: jquery get dropdown list selected value
$('#dropDownId').val();
Example 3: select box get value
// reference to 'scripts' select list
// used throughout the examples below
var sel = document.getElementById('scripts');
// display value property of select list (from selected option)
console.log( sel.value );