I have a list of a href's and I would like to create a drop down list from it.
How can i accomplish this without using jQuery?
I'm new to javascript...
|
I have a list of a href's and I would like to create a drop down list from it. How can i accomplish this without using jQuery? I'm new to javascript... |
||||
|
|
I'm not sure if the label is right; it depends on what you mean by a list of hrefs and what you want to do with the label. I'm assuming you have an array of links like ["http://google.com", ...]. |
|||
|
|
|
If you have JavaScript 1.6 you can do something like this:
You can mimic .map with
(via MDC - https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Array/map) |
|||
|