I know this has been asked before but since the search is down I'll ask again.
is there a way to reference an array of elements in javascript without the form.elements[]
example
done in a loop
<input type=text name=test[]>
if you want to view test element 5 in javascript how can you do it similar to this
var num=5
document.formName.test[num].value
b/c this doesn't work
Ace21