Answers for "bootstrap button delete"

1

remove bootstrap button outline

.btn{
	box-shadow: none !important
}
Posted by: Guest on September-22-2021
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