vote up 4 vote down star
3

I have seen the following methods of putting javascript in an <a> tag:

function DoSomething() { ... return false; }
1: <a href="javascript:;" onClick="return DoSomething();">link</a>
2: <a href="javascript:return DoSomething();">link</a>
3: <a href="javascript:void(0);" onClick="return DoSomething();">link</a>
4: <a href="#" onClick="return DoSomething();">link</a>

I understand the idea of trying to put a valid URL instead of just javascript, just incase the user doesn't have JavaScript enabled. But for the purpose of this discussion, I need to assume JS is enabled (they can't login without it).

I personally like option 2 as it allows you to see what's going to be run–especially useful when debuging where there are parameters being passed to the function. I have used it quite a bit and haven't found browser issues.

I have read that people recommend 4 because it gives the user a real link to follow, but really, # isn't "real". It will go absolutely no where.

Is there one that isn't support or is really bad, when you know the user has JS enabled?

Related question

flag

70% accept rate

5 Answers

vote up 11 vote down check

I quite enjoy Matt Kruse's Javascript Best Practices article. In it, he states that using the href section to execute javascript is a bad idea. Even though you have stated that your users must have javascript enabled, there's no reason you can't have a simple HTML page that all your javascript links can point to for their href section in the event that someone happens to turn off javascript after logging in. I would highly encourage you to still allow this fallback mechanism. Something like this will adhere to "best practices" and accomplish your goal:

<a href="javascript_required.html" onclick="doSomething(); return false;">go</a>
link|flag
1  
as the href value will be shown to user in the status bar? (the bar at the bottom) I would consider using a bit more user friendly link eg. "js.html?doSomething" the page can still be static html. This way the user will clearly see a difference between links. – Gene Oct 29 '08 at 7:51
vote up 0 vote down

Method #2 has a syntax error in FF3 and IE7. I prefer methods #1 and #3, because #4 dirty the URI with '#' although causes less typing... Obviously, as noted by other responses, the best solution is separate html from event handling.

link|flag
Method #2 of what? The questions don't stay in the same order as when YOU saw them. – Diodeus Oct 29 '08 at 12:43
Method #4 won't mess up the URI if you make sure to return false. For that reason method #4 is probably best (of those listed). – Már Örlygsson Oct 29 '08 at 14:24
vote up 2 vote down
<a href="#" onClick="DoSomething(); return false;">link</a>

I will do this, or:

<a href="#" id = "Link">link</a>
(document.getElementById("Link")).onclick = function() { DoSomething(); return false; };

Depending on the situation. For larger apps, the second one is best because then it consolidates your event code.

link|flag
If you have 20 or 30 different links with JS this can get quite tedious and end up with a lot of JS. – Darryl Hein Oct 29 '08 at 5:46
and bugs which creep into your code can be VERY hard to debug. These bugs appear very easily, as evidenced by your first example. :) – nickf Oct 29 '08 at 7:22
ouch. Thanks for the heads up :p – Nelson LaQuet Oct 29 '08 at 7:50
vote up 1 vote down

you forgot another method:

5: <a href="#" id="myLink">Link</a>

with the javascript:

document.getElementById('myLink').onclick = function() {
    // do stuff
};

I can't comment on which of the options has the best support or which is semantically the best, but I'll just say that I much prefer this style because it separates your content from your JS. It keeps all the Javascript together, which is much easier to maintain (especially if you are applying this to many links), and you can even put it in an external file which can then be packed to reduce filesize and cached by client browsers.

link|flag
1  
If you have 20 or 30 different links with JS this can get quite tedious and end up with a lot of JS. – Darryl Hein Oct 29 '08 at 5:45
So use more concise code. var $ = document.getElementById; – eyelidlessness Oct 29 '08 at 7:13
it's no more tedious than wading through HTML to change javascript. ...or you could use something like jQuery which can easily change the events on multiple elements at once... $('#menu a').click(function() { .. }) – nickf Oct 30 '08 at 0:24
vote up 3 vote down

Why would you do this when you can use addEventListener/attachEvent? If there is no href-equivalent, don't use an <a>, use a <button> and style it accordingly.

link|flag
using a button instead of a link isn't a feasible option in many cases. – nickf Oct 29 '08 at 5:26
Because it looks ugly. You can add an icon beside the link. They are hard to format the same across browsers. And generally, people are moving to links instead of buttons--look at most of stack over flow. – Darryl Hein Oct 29 '08 at 5:44
It looks ugly? It looks like whatever you want it to look like. In fact, I think buttons actually have more style flexibility than links, in that they're inline but can properly take padding across browsers. Anything that can be done with a link can be done with a button, with regards to CSS. – eyelidlessness Oct 29 '08 at 7:11
why button? Why not use a span. The css will be simpler (shorter) than with buttons. – Gene Oct 29 '08 at 7:46
Span can't be keyboard-focused. – bobince Oct 29 '08 at 9:41
show 2 more comments

Your Answer

Get an OpenID
or

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