javascript - Check select Change After Ajax Call

676

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 Source
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.

85 javascript - AJAX failed to callback
798 php - Checkbox value match, but now show checked in checkbox
833 javascript - send variable to another page via hyperlink and select it in <select> tag (HTML, Jquery)
584 php - Fatal Error: Call to member function xpath to non-object AFTER uploading to provider
512 javascript - Is there an efficient and best algorithm to upload image or any file with automatically naming?
962 javascript - technique in getting the id and pass it on ajax
411 javascript - "SyntaxError: JSON.parse: unexpected non-whitespace character after JSON data at line 1 column 295 of the JSON data"
359 php - Twilio - Putting two callers in the same dynamically-generated conference room creates infinite loop
876 using jquery $.ajax to call a PHP function
91 javascript - Using the Braintree drop-in UI to select the payment method for recurring billing -- or: finding the payment method of a paymentMethodNonce

People are also looking for solutions to the problem: php - SimpleXml problems accessing xml nodes

Source

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.

Ask a Question

Write quick answer

Do you know the answer to this question? Write a quick response to it. With your help, we will make our community stronger.

Similar questions

Find the answer in similar questions on our website.