select dropdown using text jquery code example
Example 1: how to get the selected text of dropdown in jquery
BY LOVE
$("#Id option:selected").text()
Example 2: jquery select option by text
$("#myDropdown option:contains(Option 2)").attr('selected', 'selected');