Set Dropdownlist Selected Value by Value $('#btnValue').click(function(){ var selectedValue = '5'; $('#ddlprojects option').map(function() { if($(this).val() == selectedValue) return this; }).attr('selected', 'selected');})
Login to post response