Answers for "disable a div using button click"

3

disable div click

// 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
0

On click, disable button

$("#btnSubmit").attr("disabled", true);
Posted by: Guest on May-17-2021

Browse Popular Code Answers by Language