Answers for "jquery on click button disabled"

13

jquery add disabled to button

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

enable disable click on div jquery

// To disable:    
document.getElementById('id').style.pointerEvents = 'none';
// To re-enable:
document.getElementById('id').style.pointerEvents = 'auto'; 
// Use '' if you want to allow CSS rules to set the value
Posted by: Guest on April-11-2020

Code answers related to "jquery on click button disabled"

Code answers related to "Javascript"

Browse Popular Code Answers by Language