i want to sort the drop down items using javascript,can anyone tell me how to do this.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You could use jQuery and something like this:
But it's probably better to ask why and what you're trying to accomplish. |
|||||||
|
|
Put the option values and text into an array, sort the array, then replace the existing option elements with new elements constructed from the sorted array. |
|||
|
|
|||||||||
|
|
You can try JQuery sort function for this work -- HTML CODE -
JQUERY CODE -
OR you can also use array sorting for this -
|
|||
|
|
|
I have done an example on how you could sort a drop down list using JQuery. You could check it out if you're interested. This example takes all the select elements on the page and sort them alphabetically. |
|||
|
|
|
DEPENDS ON JQUERY
Examples: <select id="my-list-id"> is sorted with:
OR
|
|||
|