3
There is a way to take the value of the chosen option of my select, on the same page, without submitting the form, at the time the user makes a change?
<select id="s_um" name="s_um">
<option id="um_1" value="0"> 0 </option>
<option id="um_2" value="1"> 1 </option>
<option id="um_3" value="2"> 2 </option>
<option id="um_4" value="3"> 3 </option>
</select>
<select id="s_dois" name="s_dois">
<option id="dois_1" value="0"> 0 </option>
<option id="dois_2" value="1"> 1 </option>
<option id="dois_3" value="2"> 2 </option>
<option id="dois_4" value="3"> 3 </option>
</select>
I would like to add the chosen values.
Have you thought about using jquery?
– Andre Mesquita