href a href click disable code example
Example 1: html disable anchor link
a.isDisabled {
pointer-events: none;
}
Example 2: disabled a click
// CSS
.not-active {
pointer-events: none;
cursor: default;
text-decoration: none;
color: black;
}
// HTML
Link