Disabled href tag

With the help of css you will disable the hyperlink. Try the below

a.disabled {
  pointer-events: none;
  cursor: default;
}
<a href="https://stackoverflow.com/questions/13955667/link.html" class="disabled">Link</a>

Leave a Comment