I have an HTML page.
I would like to extract all elements which name starts with "q1_".
How can I achieve this in JavaScript ?
Thanks !
|
I have an HTML page. I would like to extract all elements which name starts with "q1_". How can I achieve this in JavaScript ? Thanks ! |
|||
|
A quick and easy way is to use jQuery and do this:
That will grab all elements whose name attribute starts with 'q1_'. To convert the resulting collection of jQuery objects to a DOM collection, do this:
see http://api.jquery.com/attribute-starts-with-selector/ In pure DOM, you could use
|
|||||
|
|
You can use getElementsByName("input") to get a collection of all the inputs on the page. Then loop through the collection, checking the name on the way. Something like this:
|
|||||||||||
|
|
You can try using jQuery with the Attribute Contains Prefix Selector.
Haven't tested it though. |
|||
|
nameattribute? – Gumbo Apr 11 '10 at 15:15