Answers for "enable and disable click effect css"

CSS
2

disable click css

.avoid-clicks {
  pointer-events: none;
}
Posted by: Guest on January-13-2021
1

disable right click with css

document.oncontextmenu = new Function("return false;");
Posted by: Guest on October-23-2020

Code answers related to "enable and disable click effect css"

Browse Popular Code Answers by Language