Answers for "how to disable button in jquery at 10am"

3

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
0

disable all buttons jquery

$('button').removeAttr('disabled')
Posted by: Guest on December-30-2021

Code answers related to "how to disable button in jquery at 10am"

Code answers related to "Javascript"

Browse Popular Code Answers by Language