Bootstrap Disable Button после нажатия

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