As the question says, how do I add a new option to a DropDownList using jQuery?
Thanks
|
As the question says, how do I add a new option to a DropDownList using jQuery? Thanks |
||||
|
|
|
Without using any extra plugins,
If you had lots of options, or this code needed to be run very frequently, then you should look into using a DocumentFragment instead of modifying the DOM many times unnecessarily. For only a handful of options, I'd say it's not worth it though. |
|||||||||||||||||||||
|
|
With no plug-ins, this can be easier without using as much jQuery, instead going slightly more old-school:
If you want to specify whether or not the option a) is the default selected value, and b) should be selected now, you can pass in two more parameters:
|
||||
|
With the plugin: jQuery Selection Box. You can do this:
|
||||
|
|
|
U can use direct
-> Here u can use direct string |
|||
|
|
|
Pease note @Phrogz's solution doesn't work in IE 8 while @nickf's works in all major browsers. Another approach is:
|
|||
|
|
|
You may want to clear your DropDown first $('#DropDownQuality').empty(); I had my controller in MVC return a select list with only one item.
|
|||
|
|
|
try this Function:
|
||||
|
|
|
And also, use .prepend() to add the option to the start of the options list. http://api.jquery.com/prepend/ |
|||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.