up vote 8 down vote favorite
2
share [g+] share [fb]

How to make the "< a href" tag refer to nothing?

because I use jQuery

I need to make some anchor tags refer to nothing

I usually write it like this

<a href="#">link</a>

however this refer to the top of the page!

link|improve this question

55% accept rate
1  
What do you need that for? – Gumbo May 29 '09 at 7:23
because jquery will handle the click event so I want the link to be like an achor link but behave like a JavaScript function – ahmed May 29 '09 at 7:25
1  
this is like the third time I've seen this question today – annakata May 29 '09 at 9:57
1  
As mentioned in one of the answers below: if you don't want a link to point to a resource, don't use the A element. – Mathias Bynens May 29 '09 at 10:06
feedback

7 Answers

up vote 10 down vote accepted

If you don't want to have it point to anything, you probably shouldn't be using the <a> (anchor) tag.

If you want something to look like a link but not act like a link, it's best to use the appropriate element (such as <span>) and then style it using CSS:

<span class="fake-link" id="fake-link-1">Am I a link?</span>

.fake-link {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}

Also, given that you tagged this question "jquery", I'm assuming that you want to attach a click event hander. If so, just do the same thing as above and then use something like the following JavaScript:

$('fake-link-1').click(function() {
    /* put your code here */
});
link|improve this answer
3  
This has a problem: it doesn't allow tab-navigation. – Iraimbilanja May 29 '09 at 7:26
2  
Note that (as Iraimbilanja points out) the span approach here disables the possibility to invoke the function using the keyboard, which I would consider a usability problem. – Fredrik Mörk May 29 '09 at 7:38
1  
Also an accessibility problem. You can resolve it by using a button element (generated from JavaScript so non-JS users don't get a broken control). – Quentin May 29 '09 at 8:13
If it's a button that doesn't have a plain HTML fallback (links to a page or an anchor), then making it tab-navigable doesn't really serve much purpose for screen readers (of course, I could be wrong because I'm not too up-to-date on screen readers' JS capabilities). – Tyson May 29 '09 at 8:33
Here's a quick fix for that: tabindex="0" on a non-link element will enable keyboard navigation in most modern browsers. – Mathias Bynens May 29 '09 at 9:58
show 2 more comments
feedback

The correct way to handle this is to "break" the link with jQuery when you handle the link

HTML

<a href="#" id="theLink">My Link</a>

JS

$('theLink').click(function(ev){
    // do whatever you want here

    ev.preventDefault();
    ev.stopPropagation();
});

Those final two calls stop the browser interpreting the click.

link|improve this answer
2  
While that does sound like it's "proper" because it stops event bubbling, "return false" is a lot less verbose and does the same thing. The only time you would want to do that is if you already have event handlers registered to clicks on links via jQuery. – aleemb May 29 '09 at 8:26
feedback

There are a few less than perfect solutions:

1. Link to a fake anchor

<a href="#">

Problem: clicking the link jumps back to the top of the page

2. Using a tag other than 'a'

Use a span tag and use the jquery to handle the click

Problem: breaks keyboard navigation, have to manually change the hover cursor

3. Link to a javascript void function

<a href="javascript:void(0);">
<a href="javascript:;">

Problem: breaks when linking images in IE

Solution

Since these all have their problems, the solution I've settled on is to link to a fake anchor, and then return false from the onClick method:

<a href="#" onClick="return false;">

Not the most concise of solutions, but it solves all the problems with the above methods.

link|improve this answer
feedback

What do you mean by nothing?

<a href='about:blank'>blank page</a>

or

<a href='whatever' onclick='return false;'>won't navigate</a>
link|improve this answer
Agreed - just return false from your jQuery method and voila, it won't go anywhere – joshcomley May 29 '09 at 7:34
feedback

To make it do nothing at all, use this:

<a href="javascript:void(0)"> ... </a>
link|improve this answer
feedback

I think you can try

<a href="JavaScript:void(0)">link</a>

The only catch I see over here is high level browser security may prompt on executing javascript.

Though this is one of the easier way than

<a href="#" onclick="return false;">Link</a>

this should be used sparingly

Read this article for some pointers http://blog.reindel.com/2006/08/11/a-hrefjavascriptvoid0-avoid-the-void/

link|improve this answer
why the downvote? – the_drow May 29 '09 at 10:02
feedback

I know this is an old question, but I thought I'd add my two cents anyway:

It depends on what the link is going to do, but usually, I would be pointing the link at a url that could possibly be displaying/doing the same thing, for example, if you're making a little about box pop up:

<a id="about" href="/about">About</a>

Then with jQuery

$('#about').click(function(e) {
    $('#aboutbox').show();
    e.preventDefault();
});

This way, very old browsers (or browsers with JavaScript disabled) can still navigate to a separate about page, but more importantly, Google will also pick this up and crawl the contents of the about page.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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