Answers for "can i use onclick on disabled in jquery"

13

jquery add disabled to button

$("#button").attr("disabled", true);
Posted by: Guest on July-06-2020
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

Code answers related to "Javascript"

Browse Popular Code Answers by Language