$(document).ready(function(){
// Lien supprimer
$(".supprimer").click(function(){
    if (!confirm('Etes-vous sûr de vouloir supprimer ?','title', 'callback')) {
        return false;
    }
});
});
