Iterate through options

$("#selectId > option").each(function() {
    alert(this.text + ' ' + this.value);
});

Leave a Comment