botón de desactivar bootstrap después de hacer clic

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