Set Dropdownlist Selected Value by Text $('#btnsettext').click(function() { var selectedText = 'Vishal'; $('#ddlprojects option').map(function() { if($(this).text() == selectedText) return this; }).attr('selected','selected');})
Login to post response