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).
|
|
The answer is already in the comments of the question. For more visibility, I am copying this to here:
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. |
|||||||||||||||||||
|
|
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.
|
|||||||||||||||||||
|
|
CSS can't do that. CSS is for presentation only. Your options are:
|
||||
|
|
|
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:
With a CSS like
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. |
||||
|
|
|
You can set
|
|||
|
If you want to stick to just HTML/CSS on a form, another option is to use a button. Style it and set the |
||||
|
|
|
There's no way to disable a link with pure CSS: you could do so with javascript. |
|||
|
|
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.