bouton de désactiver bootstrap après le clic

$("#buttonid").on("click", function() {
    $(this).prop("disabled", true);
});
Wicked Willet