Hi all -
Here' s my problem:
I am using a Multiple Select list within a piece of PHP code whereby I am extracting the values of the list using an array:
<select multiple name="my_list[]">
<option value="my_val1">my_text1</option>
etc.
<option value="my_valn">my_textn</option>
</select>
This works great for code involving logic on the my_vals and my_texts. To validate the form using JavaScript,
form.elements["my_list[]"] works perfectly with IE, but NOT with Netscape. Is there a way that I can validate this form with Netscape keeping the name of the multiple select list as my_list[]?
Thanks a heap!