Answers for "click event disabled button"

0

disabled a click

// CSS
.not-active {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: black;
}

// HTML
<a href="link.html" class="not-active">Link</a>
Posted by: Guest on October-29-2020
1

how to disable onclick event in javascript

$("#id").on('click', function(){ //enables click event
    //do your thing here
});

$("#id").off('click'); //disables click event

// If you want to disable a div, use the following code:
$("#id").attr('disabled','disabled');
Posted by: Guest on July-01-2021

Code answers related to "click event disabled button"

Browse Popular Code Answers by Language