Skip to content

disable the hyperlink

ythy edited this page Sep 1, 2017 · 1 revision

There is no disabled attribute for hyperlinks.
With the help of css you will disable the hyperlink. Try the below

<a href="link.html" class="disabled">Link</a>

a.disabled {
   pointer-events: none;
   cursor: default;
}

Clone this wiki locally