I use JQuery Steps.In 1st and 2nd step, i have a dropdown with multiple select option.
<select name="numbers" id="numbers">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
</select>
in step2(same as step1 but with diff. purpose)
<select name="allocate_numbers" id="allocate_numbers">
<option value="1">1</option>
: : :
</select>
now i have a 3rd dropdown in 3rd step.Here i want selectbox like..suppose user select 1,2 in step1, 3,4 in step2.
now,i want selectbox that contain only 5,6 in step3.
How to do that?
side note: I done validation to prevent duplicate entry for step1 and step2 dropdown. means if user select 1,2 in step1 then he can not select 1,2 in step2. I don't find suitable title for my quetion so feel free to edit it.