vote up 3 vote down star
1

Hi, On my website I use jQuery to hook the events of elements, namely hyperlinks. As these hyperlinks only perform actions on the current page, and do not lead anywhere, I have been putting a href attribute of "#" in:

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

However in some browsers this causes the page to scroll right to top which is obviously undesirable behaviour. I've tried using a blank href value, or not including one, but then the mouse does not change to the hand cursor upon hovering.

What should I put in there?

flag

76% accept rate
1  
Just use CSS to get the hover hand cursor: a {cursor:pointer} and you'll get the hand on all links, regardless. – peirix Apr 6 at 11:12
Where are the pseudo-links taking you? Are you scrolling the page, or are you going to other anchors? – cdmckay Apr 6 at 14:46

5 Answers

vote up 7 vote down check
$('a').click(function (event) 
{ 
     event.preventDefault(); 
     //here you can also do all sort of things 
});

Then you can put in every href whatever you want and jQuery will trigger the preventDefault() method and you will not be redirected to that place.

link|flag
.live() is probably a better method for this. – eyelidlessness Jul 20 at 17:28
.live() is useless unless he puts the anchors in the DOM via JS (eg: AJAX request) – Bogdan Constantinescu Jul 21 at 13:23
vote up 2 vote down

You could either try:

<a href="javascript:false">My Link</a>

Or add return false to the end of your click handler, this prevents the browser default handler occurring which attempts to redirect the page:

$('a').click(function() {
// do stuff
return false;
});

Or simply add the return false to the anchor itself:

<a href="javascript:return false">My Link</a>

Bear in mind that the user will see the target of the link in the location bar when hovered over it, so I tend to favour the hash value with a return false in the handler, although this can lead to mistakes when you forget.

link|flag
vote up 9 vote down

You should really put a real link in there. I don't want to sound like a pedant, but that's a fairly bad habit to get into. JQuery and Ajax should always be the last thing you implement. If you have a link that goes no-where, you're not doing it right.

I'm not busting your balls, I mean that with all the best intention.

link|flag
What he should really be doing is injecting the links via JavaScript anyway, in which case I don't see the problem with not having a valid url. – Rory Fitzpatrick Apr 6 at 12:01
1  
What he really should be doing is pointing the links to the location where the non-javascript equivalent will be executed. Then overriding the action in jQuery. I'm with gargantuan on this... – Tom Wright Apr 6 at 14:21
Sometimes that makes sense, sometimes it doesn't, as always it depends on the situation. We're arguing the same side here ;-) – Rory Fitzpatrick Apr 7 at 9:42
I'll tread very carefully here, since this kind of conversation can very quickly get out of hand. I mean no harm or insult to anyone, I assure you. But with a website, I can't think of any occasion where it would make sense to have a link that goes no-where. – gargantaun Apr 7 at 10:21
I've done it myself and who hasn't, and I've also been bit in the ass a hundred times when a javascript error in an unrelated part of the code brings everything crashing down, or, when pages are slow to load but people are quick to press buttons. So now, I don't do it anymore. – gargantaun Apr 7 at 10:23
show 1 more comment
vote up 1 vote down

Why use a <a href>? I solve it like this:

<span class='a'>fake link</span>

And style it with:

.a {text-decoration:underline; cursor:pointer;}

You can easily access it with jQuery:

$(".a").click();

link|flag
Why did this get down-voted? – Horace Loeb Apr 6 at 20:16
I guess it got down-voted because it feels a bit icky. Doesn't that sort of coding just feel a bit "smoke and mirrors" to you? I like to have reasonably standard HTML with javascript and CSS adding the beauty on top. A link is a link is a link - it isn't a class 'a' span. – Nick Pierpoint May 6 at 9:25
3  
-1: Don't use semantics-free HTML with CSS to fake the visuals of the semantic default behaviors when a semantic and functional equivalent exists in HTML. gargantuan is right. – eyelidlessness Jul 20 at 17:28
I dont agree with the down votes either. If using a span for capturing events is wrong, then why jQuery in it's official documentation uses a solution similar to this answer? docs.jquery.com/Events/bind#typedatafn. Actually, since the links go anywhere in the page, I think using a span is better than an anchor tag. If instead of span he used p, what would you think? I do believe that in this example the class should have a better name instead of "faking an anchor" tough. – GmonC Oct 25 at 23:20
vote up 0 vote down

using jquery, you may want to get only to those with a '#'

$('a[href=#]').click(function(){return false;});

if you use the newest jquery (1.3.x), there's no need to bind it again when the page changes:

$('a[href=#]').live('click', function(){return false;});
link|flag

Your Answer

Get an OpenID
or

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