Advertisement
Guest User

Untitled

a guest
Jan 27th, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. <label for="team"><center>Scegli un materiale:</center></label>
  2. <select id="team" name="team">
  3. <option value="">Effettua una selezione</option>
  4. <option value="ABS">ABS (302)</option>
  5. <option value="PBT">PBT (PTMT) (322)</option>
  6. <option value="PPS">PPS (319)</option>
  7. </select>
  8. </div>
  9. </div>
  10. </div>
  11. <div id="tabella"></div>
  12. <script src="https://code.jquery.com/jquery-3.4.1.js"></script>
  13. <script>
  14. $(document).on("change", "#team", function() {
  15. var team = $(this).val();
  16.  
  17. if (team !== '') {
  18. $.ajax({
  19. type: "post",
  20. url: 'tabelle.php',
  21. data: 'team='+JSON.stringify(team),
  22. dataType: 'html',
  23. success: function(response) {
  24. $('#tabella').html(response);
  25. },
  26. error: function(response) {
  27. $('#tabella').html('<br />ERRORE : il server non risponde o lo ha fatto in modo anomalo '+response.responseText);
  28. }
  29. });
  30. }
  31. });
  32. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement