Answers for "jquery enable and disable button"

13

jquery add disabled to button

$("#button").attr("disabled", true);
Posted by: Guest on July-06-2020
5

jquery disable button

$('.class').prop("disabled", true);
$('#id').prop("disabled", true);

// As function
const disable = (id) => $(`#${id}`).prop("disabled", true);
Posted by: Guest on August-14-2020

Code answers related to "jquery enable and disable button"

Code answers related to "Javascript"

Browse Popular Code Answers by Language