i need to submit values of 3 different options in a form, but I'm very inexperienced in using ajax. I have 3 different list of options/select values and whenever one of the option is selected it'll submit all the other 2 options. I've only managed to submit a single option but unable to submit the rest of the options. I need some expert advice please. Thank you!
I still can't get it to work but here's a more specific task that i'm trying to achieve
<form method="POST" name="step01" action="">
</select name="dayID" onChange="javascript:document.step01.submit()" size="1">
<option value=" ">(please select a country)
<option value="1">1
<option value="2">2
<option value="3">3
<option value="4">4
<option value="5">5
<option value="6">6
<option value="7">7
</select>
</select name="monthID" onChange="javascript:document.step01.submit()" size="1">
<option value=" ">(please select a country)
<option value="1">1
<option value="2">2
<option value="3">3
<option value="4">4
<option value="5">5
<option value="6">6
<option value="7">7
</select>
</select name="yearID" onChange="javascript:document.step01.submit()" size="1">
<option value=" ">(please select a country)
<option value="1">1
<option value="2">2
<option value="3">3
<option value="4">4
<option value="5">5
<option value="6">6
<option value="7">7
</select>
</form>
notice that there is 3 different select names for each. I would like to submit all 3 values without refreshing the page using the onChange method. Can anyone help me with an easy ajax snippet?