I have a select box that is populated with all the available options it can have. When a user clicks on a record in my application, I get an xml response that includes the value of the option for that record. I'd like to use javascript to set the selected index for that particular option in the select box without having to reload the select box. Is there an easy way to find the index of an option based on the value or name of the option? Then, I could set that option as the selected index.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
I'd second Toby's answer. Still, if you can't use an existing library for some reason, it's easy enough to do in plain javascript:
If you'd like to use the text of the option instead, replace |
|||||||
|
|
It'll be pretty close to this:
|
||||
|
|
|
I would suggest having a look at a JS library like jQuery or Prototype. They make this kind of thing easy. |
|||
|
|