how to assign value to dropdown in jquery code example
Example 1: how to set the value of dropdown
BY LOVE
$("#ddlPartnerType").val(0);
Example 2: set dropdown in jquery
$('select[name^="salesrep"] option:selected').attr("selected",null);
BY LOVE
$("#ddlPartnerType").val(0);
$('select[name^="salesrep"] option:selected').attr("selected",null);