Hi,
I built a form in php that contains some check boxes and drop-down boxes and a Add button. What I want to do is manipulating the check box state (checked and uncheked state) in order to disable button and other elemnets form.
My question is how can I manipulate the formm element with out submiting it. The codeis display below.
[HTML]<input name="cars id="cars" type="checkbox" value="cars"> Airplanes
, I am
<select name="jetsExper ience" style="width:15 0px">
<option value="1" selected="selec ted">Novice</option>
<option value="2">Inter midate</option>
<option value="3">Exper t</option>
</select>
Driver, own the following car:
<select name="manufactu re" style="width:15 0px">
<option value="Fiat">Fi at</option>
<option value="Honda">H onda</option>
<option selected value="Volvo">V olvo</option>
</select>
<select name="model" style="width:15 0px">>
<option value="130">130 </option>
<option value="140">140 </option>
<option selected value="150">150 </option>
<option value=""></option>
</select>
<input type="button" name="groovybtn 1" class="addButto n" value="ADD" title=""> <br />[/HTML]
I built a form in php that contains some check boxes and drop-down boxes and a Add button. What I want to do is manipulating the check box state (checked and uncheked state) in order to disable button and other elemnets form.
My question is how can I manipulate the formm element with out submiting it. The codeis display below.
[HTML]<input name="cars id="cars" type="checkbox" value="cars"> Airplanes
, I am
<select name="jetsExper ience" style="width:15 0px">
<option value="1" selected="selec ted">Novice</option>
<option value="2">Inter midate</option>
<option value="3">Exper t</option>
</select>
Driver, own the following car:
<select name="manufactu re" style="width:15 0px">
<option value="Fiat">Fi at</option>
<option value="Honda">H onda</option>
<option selected value="Volvo">V olvo</option>
</select>
<select name="model" style="width:15 0px">>
<option value="130">130 </option>
<option value="140">140 </option>
<option selected value="150">150 </option>
<option value=""></option>
</select>
<input type="button" name="groovybtn 1" class="addButto n" value="ADD" title=""> <br />[/HTML]
Comment