Bootstrap desativar o botão após clicar
$("#buttonid").on("click", function() {
$(this).prop("disabled", true);
});
Wicked Willet
$("#buttonid").on("click", function() {
$(this).prop("disabled", true);
});