I have a element in HTML. This element represents a drop down list. I\'m trying to understand how to iterate through the options in the <
<
$.each($("#MySelect option"), function(){ alert($(this).text() + " - " + $(this).val()); });