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.

i, for example) to another HTMLFormElement.elements call. Ex:HTMLFormElement.elements["unit_price[" + i + "]"];– user1385191 Sep 28 '11 at 22:37