Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a SELECT element in HTML. This element represents a drop down list. I'm trying to understand how to iterate through the options in the SELECT element via JQuery.

How do I use JQuery to display the value and text of each option in a SELECT element? I just want to display them in an alert() box.

Thank you!

share|improve this question

2 Answers

up vote 40 down vote accepted
$("#selectId > option").each(function() {
    alert(this.text + ' ' + this.value);
});
share|improve this answer
Its weird, this should work but for some reason it doesnt for me... :( – SublymeRick Dec 20 '11 at 21:20
3  
It should be $(this).val() instead of this.value like IT ppl said. – Thihara Jun 1 '12 at 4:36
Only IT ppl's answer worked for me (and it wasn't just the "this") – user984003 Oct 11 '12 at 14:58

This worked for me

$(function() {
    $("#select option").each(function(i){
        alert($(this).text() + " : " + $(this).val());
    });
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.