I need to iterate through a group of select lists on my page and choose only those selects that have the selected option of "Yes".
Something like (which doesnt work):
$(".option-select option[value='yes']:selected").each(function () {
alert($(this).attr("id"));
});