select dropdown value using jquery code example
Example 1: how to get the value of dropdown in jquery
BY LOVE
$('#ddlName option:selected').val();
Example 2: jquery dropdown select
$("#element-id").val('the value of the option');
BY LOVE
$('#ddlName option:selected').val();
$("#element-id").val('the value of the option');