Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

For example if I have this:

<a style="" href="page.html">page link</a>

is there anything I can use for the style attribute that will make it so the link isn't clickable and won't take me to page.html.

Or is my only option to simply not wrap 'page link' in an anchor tag?

Edit: I want to state why I want to do this so that people may be able to provide better advice. I am trying to set up my application so that the developer can choose what type of navigation style they want.

So I have a list of links and one is always currently selected and all the others aren't. For the links that are not selected I obviously want those to be normal clickable anchor tags. But for the selected link some people prefer that the link remain clickable while others like to make it not clickable.

Now I could easily just programmatically not wrap anchor tags around the selected link. But I figure it will be more elegant if I can always wrap the selected link in something like:

<a id="current" href="link.html">link</a>

and then let the developer control the linking style through css.

share|improve this question
If it's a link, it's a link. – BoltClock Jul 18 '11 at 0:36
1  
If you don't want it to be clicked, maybe use a <span> instead? – David Thomas Jul 18 '11 at 0:43
I would have to agree with David. Don't break UI paradigms. The expectation of a user is that links can be clicked. If it can't be clicked then its not really a link is it? – mrtsherman Jul 18 '11 at 18:24
Check out stackoverflow.com/questions/2091168/disable-a-link-using-css for some more possible answers. – Oliver Feb 12 at 7:36

5 Answers

up vote 8 down vote accepted

Or purely HTML and CSS with no events:

<div style="z-index: 1; position: absolute;">
    <a style="visibility: hidden;">Page link</a>
</div>
<a href="page.html">Page link</a>
share|improve this answer
+1, jsfiddle.net/jS4Jq – Alix Axel Jul 18 '11 at 0:54

That isn't too easy to do with CSS, as it's not a behavioral language (ie JavaScript, jQuery), the only easy way would be to use a JavaScript OnClick Event on your anchor and to return it as false, this is probably the shortest code you could use for that:

<a href="page.html" onclick="return false">page link</a>
share|improve this answer
wow, that was easy, simple, and just plain cool – Eclipsoft Sep 14 '12 at 2:04
This should be the top answer – Mike Jan 18 at 0:49
@Mike This one make the click do nothing, but the button still looks clickable. – acostache Jan 31 at 10:59
Easy to use, simple and much better than the accepted answer! – Drejon May 16 at 11:52

A more un-obtrusive way (assuming you use jQuery):

HTML:

<a id="my-link" href="page.html">page link</a>

Javascript:

$('#my-link').click(function(e)
{
    e.preventDefault();
});

The advantage of this is the clean separation between logic and presentation. If one day you decide that this link would do something else, you don't have to mess with the markup, just the JS.

share|improve this answer
1  
You know you could easily write non jQuery code to do the same thing that would run quite a bit faster: document.getElementById('my-link').onclick = function(){ return false; }; – Paulpro Jul 18 '11 at 0:28
1  
Seriously? What browser doesn't support onclick or getElementById. Okay, so IE 2 doesn't support onclick, but it also didn't support CSS... and I highly doubt your jQuery code there will work in IE 2 either. – Paulpro Jul 18 '11 at 0:40
1  
The speed difference might be small, bt not if you can't jQuery library download time. I really don't think it's a good idea to use encourage use of jQuery when you don't need, because people become dependent on it and forget how to write Javascript without it. – Paulpro Jul 18 '11 at 0:42
1  
@PaulPRO This discussion is moot without the author's requirements. Each framework has its purpose. If he's not fluent in JS and just doing a mom-n-pop website and needed to manipulate some DOM element, it'd much easier for him to use a framework. Your reluctance in using any framework is ridiculous. PHP is written in C. Does that mean you should write C and not use PHP? iOS has UIKit, Core Data, Quartz, etc. Flash has tons of commonly used 3rd party libraries. Again, each framework has its purpose. A purist, not-built-in-house mentality won't help anyone. – pixelfreak Jul 18 '11 at 0:48
1  
I agree it is kind of moot though, but I don't think posting an answer with jQuery when the OP didn't say they were using jQuery to begin with makes sense, since they could have to include the while framework just for 3 lines of code in that case, and the non jQuery solution isn't any more complicated – Paulpro Jul 18 '11 at 0:51
show 1 more comment

The answer is:

<a href="page.html" onclick="return false">page link</a>
share|improve this answer
That's JavaScript, not CSS. – BoltClock Jul 18 '11 at 0:35

CSS was designed to affect presentation, not behaviour.

You could use some JavaScript.

document.links[0].onclick = function(event) {
   event.preventDefault();
};
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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