enrichissement/public/scripts/enrichissement.js

13 lines
321 B
JavaScript
Raw Normal View History

2012-01-13 16:15:53 +00:00
$(document).ready(function(){
2012-01-19 15:25:47 +00:00
$("a.setprofil").click(function(e){
e.preventDefault();
var profil = $(this).parent('td').find('select[name=profil] option:selected').val();
$.post($(this).attr('href'), {idprofil: profil}, function(data){
if (data!='Erreur'){
window.location.href = '/';
}
});
});
2012-01-13 16:15:53 +00:00
});