Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a form where the inputs have names such as:

unit_price[1]
unit_price[2]

The only way I've found to access them from javascript is using:

document.getElementsByName("unit_price[1]")[0]

I was wondering if there is a way to access them as a single array in one selector.

I'm looking for a pure javascript way to do this, but the page does have the YUI 2 framework loaded, in case there is a one step way of doing it using yui syntax.

share|improve this question
HTMLFormElement.elements would be a big help here. You'd have to loop over the elements collection itself, and then pass an iterator (i, for example) to another HTMLFormElement.elements call. Ex: HTMLFormElement.elements["unit_price[" + i + "]"]; – user1385191 Sep 28 '11 at 22:37

2 Answers

up vote 2 down vote accepted

From the YUI2 docs:

var nodes = YAHOO.util.Selector.query('input[name^=unit_price]');
share|improve this answer
Yeah, I just found that. There docs leave something to be desired. Thanks! – Anthony Sep 28 '11 at 22:47

Here's a native solution using querySelectorAll()[docs] :

document.querySelectorAll("[name^=unit_price]");

Has pretty good browser support.

http://www.quirksmode.org/dom/w3c_core.html

enter image description here

Good idea to prefix the selector with input like @davin did in his answer.

share|improve this answer
1  
+1 because I've never heard of this and it's pretty awesome. I'm giving davin the answer because I ended up using his exact solution although I found it on my own. – Anthony Sep 28 '11 at 22:47
As a note, I'm fairly sure that YUI3 will use querySelectorAll under the hood if it's available and revert to an in-code solution otherwise. I don't believe YUI2 works this way, though. – Nick Husher Sep 29 '11 at 13:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.