Disabled href tag

Alan Coromano picture Alan Coromano · Dec 19, 2012 · Viewed 712k times · Source

Although that link is disabled, it's still clickable.

<a href="/" disabled="disabled">123n</a>

Can I make it not-clickable if it's disabled? Should I use JavaScript necessarily?

Answer

Lakhan picture Lakhan · Nov 21, 2014

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

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