Answers for "how to disable the button in bootstrap"

0

bootstrap disabled button

<button type="button" class="btn btn-lg btn-primary" disabled>Primary button</button>
<button type="button" class="btn btn-secondary btn-lg" disabled>Button</button>
Posted by: Guest on September-24-2020
1

bootstrap disable button after click

$("#buttonid").on("click", function() {
    $(this).prop("disabled", true);
});
Posted by: Guest on March-04-2021

Code answers related to "how to disable the button in bootstrap"

Browse Popular Code Answers by Language