How can I get all the options of a select through Jquery by passing on its ID?
Edit: Only looking to get their values, not the text
|
How can I get all the options of a select through Jquery by passing on its ID? Edit: Only looking to get their values, not the text |
||||
|
|
|
Second time I write an answer like that today...
|
|||||
|
|
I don't know jquery, but do know that if you get the select element, it contains an 'options' object.
|
|||||
|
|
You can add change options to The first line selects all of the checkboxes and puts their jQuery element into a variable. We then use the |
||||
|
|
Some answers uses
There are (at least) two Edit, correction: It depends on what you are going to do with the values. If you, let's say, want to return the values from a function, |
|||||||||||||||
|
|
Putting life to an old thread. You can take all your "selected values" by the name of the checkboxes and present them in a sting seperated by ",". A nice way to do this is to use jQuery $.map().
|
|||||||
|
|
This will put the option values of #myselectbox into a nice clean array for you:
|
|||
|
|
Although, the CORRECT way is to set the DOM property of the element, like so:
|
||||
|
|
Or:
To see the results:
|
||||
|
|