Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any way to disable a link using css?

I have class called current-page The links having this class should be disabled(means no action should be occur when clicking on it).

share|improve this question
5  
after a lot of googling i got the perfect answer for this question css-tricks.com/pointer-events-current-nav – RSK May 26 '10 at 14:13

7 Answers

up vote 142 down vote accepted

The answer is already in the comments of the question. For more visibility, I am copying this to here:

got this as perfect answer

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

.active {
   pointer-events: none;
   cursor: default;
}

Note that this only works in: Firefox 3.6+, Safari 3+, Chrome 5+ (didn't try previous versions). This does not work in Opera or IE. Example: http://jsfiddle.net/7EQJp/

Warning: The use of pointer-events in CSS for non-SVG elements is experimental. The feature used to be part of the CSS3 UI draft specification but, due to many open issues, has been postponed to CSS4.

share|improve this answer
61  
This solution does not support any version of IE. Not a solution. – GavinR Jun 10 '11 at 14:15
16  
Its a great solution for me, since I don't need to support IE at all. Thanks! – Richard Venable Jul 2 '11 at 4:35
3  
I agree with Gavin, It should work in IE as well. – rjha94 Aug 15 '11 at 14:37
In my page, this solution does not work even for firefox. Beware. – Geoffroy CALA Feb 21 '12 at 21:42
1  
If it only works in some browsers, it's hardly a perfect solution. – Jonathan Wood Feb 23 '12 at 21:42
show 5 more comments

CSS can only be used to change the style of something. The best you could probably do with pure CSS is to hide the link altogether.

What you really need is some javascript. Here's how you'd do what you want using the jQuery library.

$('a.current-page').click(function() { return false; });
share|improve this answer
2  
Better solutions since it works in almost all browsers – Warface Aug 23 '11 at 14:49
3  
Don't forget preventing default behaviors: function(ev){ ev.preventDefault(); ev.stopPropagation(); return false;. – Loïs Di Qual Jun 8 '12 at 15:22
1  
@Idiqual, return false does that – nickf Jun 9 '12 at 8:38
return false only works if the action is set using the href attribute – Justin Jun 21 '12 at 17:40
1  
how can i enable it back? – Kit Ho Aug 22 '12 at 9:56
show 1 more comment

CSS can't do that. CSS is for presentation only. Your options are:

  • Don't include the href attribute in your <a> tags.
  • Use JavaScript, to find the anchor elements with that class, and remove their href or onclick attributes accordingly. jQuery would help you with that (NickF showed how to do something similar but better).
share|improve this answer

Only way you could do this without CSS would be to set a CSS on a wrapping div that made your a disappear and something else take it's place.

EG:

<div class="disabled">
    <a class="toggleLink" href="wherever">blah</a>
    <span class="toggleLink">blah</span
</div>

With a CSS like

.disabled a.toggleLink { display: none; }
span.toggleLink { display: none; }
.disabled span.toggleLink { display: inline; }

To actually turn off the A you'll have to replace it's click event or href, as described by others.

PS: Just to clarify I'd consider this a fairly untidy solution, and for SEO it's not the best either, but I believe it's the best with purely CSS.

share|improve this answer

You can set href attribute to javascript:void(0)

<style>
.disabled{
    /*Disabled link style*/
    color:black;
}
</style>

<a class="disabled" href="javascript:void(0)">LINK</a>
share|improve this answer
11  
Setting the href attribute isn't something you can do with CSS... – nickf Jan 19 '10 at 5:02
1  
@nickf true, however, this is a neat solution and is better than relying on the poor default IE styling when set to disabled. – Fly_Trap Feb 28 '12 at 12:09

If you want to stick to just HTML/CSS on a form, another option is to use a button. Style it and set the disabled attribute.

E.g. http://jsfiddle.net/cFTxH/1/

share|improve this answer

There's no way to disable a link with pure CSS: you could do so with javascript.

share|improve this answer

protected by Community Sep 21 '11 at 11:20

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.