-
Notifications
You must be signed in to change notification settings - Fork 0
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;
}
tell me how get back to sunshine