Answers for "how to make anchor tag unclickable"

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

Code answers related to "how to make anchor tag unclickable"

Browse Popular Code Answers by Language