Suppose a list of options is available,how to update the <select> with new ones?
|
|
|
You can remove the existing options by using the
If you have your new options in an object you can:
Edit: For removing the all the options but the first, you can use the
|
|||||||||||
|
where comboBx is your combo box id. or you can append options as string to the already existing innerHTML and then assign to the select innerHTML. Edit If you need to keep the first option and remove all other then you can use
|
||||
|
I threw CMS's excellent answer into a quick jQuery extension:
It expects an array of objects which contain "text" and "value" keys. So usage is as follows:
|
|||
|
|
|
I had a sample of something similar a while ago. http://commadot.com/jquery/textToSelect.php |
|||
|
|