How can I get at the elements in a listbox
without putting the square brackets in the
HTML name?
<select name="ListTwo[]" size="15" multiple
onDblClick="moveSelected(this.form.ListTwo,
this.form.ListOne,false)">
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
The javascript functions that I use to
move selected items in a listbox to
another do not like the square backets
in name="ListTwo[]".
Thanks,
John