22-03-2016, 09:52 PM
Tu fais juste cela :
Code PHP :
<?php
$(document).ready(function(){
$('#mecaniciens').on('change',function(){
var mecanicien = $('#mecaniciens').val();
$.post('../game/core/ajax/maj_mecaniciens.php',{mecanicien:mecanicien}, function(donnees){
$('#infos_mecaniciens').html(donnees);
});
return false;
});
});
Car quand tu fais :
Code PHP :
<?php
$('.formulaire').on('change', function(){ ... });