I want to select an input with Prototypejs and its $$ function.
I am able to do this :
$$('input')
But I want to be more accurate in my search, with a name of an input. The name of the input I want to select is "array[]" :
$$('input[name="array[]"]')
I think the [ and ] in the name are creating troubles because the result I get are the same as if I did this :
$$('input')
How do i select the inputs having a name such as "something[]" ?