javascript - Check select Change After Ajax Call
Hy everyone I searched a lot for a solution but I don't find any suggestion, thanks for your help ;)
My problem is that I have 2 or 3 selects within a form like that:
<select name="type" id="type">
<?php for($i=0;$i<sizeof($id);$i++){?>
<option value="<?php echo $id[$i] ?>"><?php echo $nom[$i] ?></option>
<?php } ?>
</select>
<div id="largeurHolder">
<select name='largeur' id='largeur'>
<?php for($i=0;$i<sizeof($largeur);$i++){ ?>
<option value='<?php echo $largeur[$i] ?>'><?php echo $largeur[$i] ?></option>
<?php } ?>
</select>
</div>
<div id="hauteurHolder">
<select name='hauteur' id='hauteur'>
<?php for($i=0;$i<sizeof($hauteur);$i++){ ?>
<option value='<?php echo $hauteur[$i] ?>'><?php echo $hauteur[$i] ?></option>
<?php }?>
</select>
</div>
Share solution ↓
Additional Information:
Link To Answer People are also looking for solutions of the problem: sqlstate[hy000] [1698] access denied for user 'root'@'localhost'
Didn't find the answer?
Our community is visited by hundreds of web development professionals every day. Ask your question and get a quick answer for free.
Similar questions
Find the answer in similar questions on our website.