Answers for "how to make a tag not clickable"

1

how to make an anchor tag unclickable

.disableClick{
    pointer-events: none;
}
Posted by: Guest on April-18-2020
0

make link not clickable

.isDisabled {
  ...
  pointer-events: none;
}
Posted by: Guest on February-28-2020
0

how to make an a tag not clickable

<a href="page.html" onclick="return false">page link</a>
Posted by: Guest on July-29-2020

Browse Popular Code Answers by Language