Answers for "disabled anchor tag"

4

disable a tag

.disable{
	pointer-events:none;
}

with jquery add this class to you element to disable is and remove class to enable it
Posted by: Guest on May-28-2020
2

html disable anchor link

a.isDisabled {
  pointer-events: none;
}
Posted by: Guest on April-16-2020
0

make an anchor tag inactive

<style>
.disabled-link {
  pointer-events: none;
}
</style>
<a href="https://google.com" class="disabled-link">Google.com</a>
Posted by: Guest on August-03-2021
1

disable an anchor tag

<a href="link.html" class="disabled">Link</a>
Posted by: Guest on June-13-2021

Browse Popular Code Answers by Language