Answers for "how to make button unclickable"

CSS
9

html button disabled

<button type="button" disabled>This button is disabled</button>
Posted by: Guest on February-21-2020
0

can we block onclick of button using css

.Disabled{
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}
Posted by: Guest on December-04-2020

Code answers related to "how to make button unclickable"

Browse Popular Code Answers by Language