bootstrap nonaktifkan tombol setelah klik

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