Answers for "prevent button from being clicked css"

CSS
1

css disable button click

button.disabled{
  pointer-events: none;
}
Posted by: Guest on January-21-2021
0

prevent from going to a function html click

$("#clickable a").click(function(e) {
   // Do something
   e.stopPropagation();
});
Posted by: Guest on July-03-2020

Code answers related to "prevent button from being clicked css"

Browse Popular Code Answers by Language