How do I set the index of a dropdown in jQuery if the way I\'m finding the control is as follows:
$(\"*[id$=\'\" + originalId + \"\']\")
I
You want to grab the value of the first option in the select element.
$("*[id$='" + originalId + "']").val($("*[id$='" + originalId + "'] option:first").attr('value'));