make a tag not clickable code example
Example 1: how to make an anchor tag unclickable
.disableClick{
pointer-events: none;
}
Example 2: make link not clickable
.isDisabled {
...
pointer-events: none;
}
Example 3: how to make an a tag not clickable
<a href="page.html" onclick="return false">page link</a>