bootstrap disable button disappear how to code example
Example: bootstrap disable button after click
$("#buttonid").on("click", function() {
$(this).prop("disabled", true);
});
$("#buttonid").on("click", function() {
$(this).prop("disabled", true);
});