Ok, here is the situation. I have form elements that look like this:
<input name='info[company]' type='text' size='40'>
Basically, I am using arrays in the form elements. The problem is doing javascript form verification and manipulation on elements with brackets ( [ and ] ) in their name. using:
formname.info[company].value = '12';
produces an error. Any body gotten this one to work?
TIA
David