Hi There,
I've been working on a form that requires multiple selection. For some reason I can't seem to pass all the slected varibles once submitted. Only one would go through. Here is the link if you'd like to see the form.
http://www.grundfos.com/web/HomeUs.n...25737D00681B0A
I need some help with the codes if possible. Here is a small sniplets of my codes for just the selection options
- HTML: Select all
<script type="text/javascript">
function selectMultiple()
{
document.getElementById("mySelect").multiple=true
}
</script>
<form>
<input name="orderfield" type="hidden" value="whoareyou,firstname,lastname,telephone,fax,email,companyname,mailingaddress,mailingcity,mailingstate,mailingzip,model"/>
<table align="center">
<tr>
<td>Select a vehicle: </td>
</tr>
<tr>
<td><select name="make" style="width:160px;"></select></td>
<td></td>
</tr>
<tr>
<td><select name="type" style="width:160px;"></select></td>
<td></td>
</tr>
<tr>
<td>
<select id="mySelect" name="model" style="width:160px;"></select></td>
<td><input class="button" type="button" value="Reset"> <input class="button" type="button"></td>
</tr>
</table>
These are just some of the codes I've been messing with. The name="model" actually refer to option lists = list of all that models.
I don't know if this is too confusing, but if you can desipher it and help me that would be cool!
Thanks in advance.