You can simply use the CSS pointer-events property to disable a link. The none value of this property specify the element is never the target of pointer events.
Let's try out the following example to understand how it actually works:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Disable an HTML Link using CSS</title>
<style>
.disabled-link{
cursor: default;
pointer-events: none;
text-decoration: none;
color: grey;
}
</style>
</head>
<body>
<a href="somepage.html" class="disabled-link">HTML Link</a>
</body>
</html>
The pointer-events property supported in all major browsers, such as Chrome, Firefox, Safari, IE11+, etc. Alternatively, you can use jQuery to remove the clickable behavior from a disabled link.
Use the CSS
pointer-eventsPropertyYou can simply use the CSS
pointer-eventsproperty to disable a link. Thenonevalue of this property specify the element is never the target of pointer events.Let's try out the following example to understand how it actually works:
The
need an explanation for this answer? contact us directly to get an explanation for this answerpointer-eventsproperty supported in all major browsers, such as Chrome, Firefox, Safari, IE11+, etc. Alternatively, you can use jQuery to remove the clickable behavior from a disabled link.