- Here have two list field menu. First
brandseconditem - I want if we
selectbrandIBMthatitemwill
selectIBMtoo - In other hand, if we
selectbrandHPthatitemwill
selectHPtoo
How to do that in javascript.
<select name="brand">
<option>Please Select</option>
<option>IBM</option>
<option>HP</option>
</select>
<select name="item">
<option>Please Select</option>
<option>IBM</option>
<option>HP</option>
</select>
1 Answer