Answers for "bootstrap css disable button during page load"

1

bootstrap disable button after click

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

Browse Popular Code Answers by Language