When building a link that has the sole purpose to run JavaScript code, is it better to
<a href="#" onclick="myJsFunc();">Link</a>
or
<a href="javascript:void(0)" onclick="myJsFunc();">Link</a>
?
|
When building a link that has the sole purpose to run JavaScript code, is it better to
or
? | ||||
|
show 8 more comments
feedback
|
|
I use Three reasons. Encouraging the use of # amongst a team of developers inevitably leads to some using the return value of the function called like this:
But then they forget to use A second reason for avoiding A third reason is that there are cases where the onclick event property is assigned dynamically. I prefer to be able to call a function or assign it dynamically without having to code the function specifically for one method of attachment or another. Hence my onclick (or on anything) in HTML markup look like this:
OR
Using So if you're a lone developer then you can clearly make your own choice, but if you work as a team you have to either state: Use OR Use The second is clearly easier to communicated. | |||||||||||||||||||||
feedback
|
|
Neither. If you can have an actual URL that makes sense use that as the HREF. The onclick won't fire if someone middle-clicks on your link to open a new tab or if they have JavaScript disabled. If that is not possible, then you should at least inject the anchor tag into the document with JavaScript and the appropriate click event handlers. I realize this isn't always possible, but in my opinion it should be striven for in developing any public website. Check out Unobtrusive JavaScript and Progressive enhancement (both Wikipedia). | |||||||||||||||||||||
feedback
|
|
The first one, ideally with a real link to follow in case the user has JavaScript disabled. Just make sure to return false to prevent the click event from firing if the JavaScript executes.
| |||||||||||||
feedback
|
|
'#' will take the user back to the top of the page, so I usually go with void(0). | |||||||||||||
feedback
|
HREFs THAT DO NOTHING ARE BAD PRACTICE! STOP DOING THAT!Doing
A better way: unobtrusive JavaScriptJust don't have a Simple code exampleYour HTML:
Your CSS:
Your JavaScript:
A blackboxed Backbone.js exampleFor a scalable, blackboxed, Backbone.js component example - see this working jsfiddle example here. Notice how we utilize unobtrusive JavaScript practices, and in a tiny amount of code have a component that can be repeated across the page multiple times without side-effects or conflicts between the different component instances. Amazing! Notes
| |||||||||
feedback
|
|
Neither if you ask me; If your "link" has the sole purpose of running some JavaScript code it doesn't qualify as a link; rather a piece of text with a JavaScript function coupled to it. I would recommend to use a <span> tag with an onclick handler attached to it and some basic CSS to immitate a link. Links are made for navigation, and if your JavaScript code isn't for navigation it should not be an <a> tag. Example:
| |||||||||||||
feedback
|
|
Ideally you'd do this:
Or, even better, you'd have the default action link in the HTML, and you'd add the onclick event to the element unobtrusively via JavaScript after the DOM renders, thus ensuring that if JavaScript is not present/utilized you don't have useless event handlers riddling your code and potentially obfuscating (or at least distracting from) your actual content. | ||||
|
feedback
|
|
I agree with suggestions elsewhere stating that you should use regular URL in The problem with this approach is, that if the function will not work or if there will be any problem, the link will become unclickable. Onclick event will always return There's very simple solution. Let function return JavaScript
HTML
Note, that I negate the result of the | ||||
|
feedback
|
|
Unless you're writing out the link using JavaScript (so that you know it's enabled in the browser), you should ideally be providing a proper link for people who are browsing with JavaScript disabled and then prevent the default action of the link in your onclick event handler. This way those with JavaScript enabled will run the function and those with JavaScript disabled will jump to an appropriate page (or location within the same page) rather than just clicking on the link and having nothing happen. | ||||
|
feedback
|
|
It would be better to use jQuery,
and omit both The anchor tag markup will be like
Simple enough! | |||||||||||||||||
feedback
|
|
Definitely hash (
Of course "#" with an onclick handler which prevents default action is [much] better. Moreover, a link that has the sole purpose to run JavaScript is not really "a link" unless you are sending user to some sensible anchor on the page (just # will send to top) when something goes wrong. You can simply simulate look and feel of link with stylesheet and forget about href at all. In addition, regarding cowgod's suggestion, particularly this: ...href="javascript_required.html" onclick="... This is good approach, but it doesn't distinguish between "JavaScript disabled" and "onclick fails" scenarios. | ||||
|
feedback
|
|
HTML:
JavaScript:
You should always strive for graceful degradation (in the event that the user doesn't have JavaScript enabled...and when it is with specs. and budget). Also, it is considered bad form to use JavaScript attributes and protocol directly in HTML. | ||||
|
feedback
|
|
I use
instead of
| ||||
|
feedback
|
|
I recommend using a It's even better if you inject the elements unobtrusively, a type of progressive enhancement. (See this comment.) | ||||
|
feedback
|
|
I would honestly suggest neither. I would use a stylized
This way you can assign your onclick. I also suggest binding via script, not using the If you MUST use an A element, use javascript:void(0); for reasons already mentioned.
I've seen using the hash tag cause unexpected behavior, and it's best to avoid it unless you intend to use it, and are allowing the click to happen, then binding to the hash tag for interaction changes/history. | ||||
|
feedback
|
|
Using just "#" makes some funny movements, so I would recommend to use "#self" if you would like to save on typing efforts of "JavaScript bla, bla,". | ||||
|
feedback
|
|
Depending on what you want to accomplish, you could forget the onclick and just use the href:
It gets around the need to return false. I don't like the
Lastly, you can use | |||||
feedback
|
|
If you use a link as a way to just execute some JavaScript code (instead of using a span like D4V360 greatly suggested), just do:
If you're using a link with onclick for navigation, don't use href="#" as the fallback when JavaScript is off. It's usually very annoying when the user clicks on the link. Instead, provide the same link the onclick handler would provide if possible. If you can't do that, skip the onclick and just use a JavaScript URI in the href. | ||||
|
feedback
|
|
I will use
Reasons:
| ||||
|
feedback
|
|
Just to pick up the point some of the other have mentioned. It's much better to bind the event 'onload'a or $('document').ready{}; then to put JavaScript directly into the click event. In the case that JavaScript isn't available, I would use a href to the current URL, and perhaps an anchor to the position of the link. The page is still be usable for the people without JavaScript those who have won't notice any difference. As I have it to hand, here is some jQuery which might help:
| ||||
|
feedback
|
|
Ideally you should have a real URL as fallback for non-JavaScript users. If this doesn't make sense, use | ||||
|
feedback
|
|
I choose use javascript:void(0), because use this could prevent right click to open the content menu. | ||||
|
feedback
|
|
You can also write a hint in an anchor like this:
so the user will know what this link does. | ||||
|
feedback
|
|
What I understand from your words is that you want to create a link just to run JavaScript code. Then you should consider that there are people who blocks JavaScript out there in their browsers. So if you are really going to use that link only for running a JavaScript function then you should add it dynamically so it won't be even seen if the users didn't enable their JavaScript in the browser and you are using that link just to trigger a JavaScript function which makes no sense to use a link like that when JavaScript is disabled in the browser. For that reason neither of them is good when JavaScript is disabled. Aand if JavaScript is enabled and you only want to use that link to invoke a JavaScript function then
is far better way than using
because href="#" is going to cause the page to do actions that are not needed. Also, another reason why Considering this, I would prefer using and exercising on
enough to make it a habit and to be more user friendly please add that kind of links within the JavaScript code:
| ||||
|
feedback
|
|
I believe you are presenting a false dichotomy. These are not the only two options. I agree with Mr. D4V360 who suggested that, even though you are using the anchor tag, you do not truly have an anchor here. All you have is a special section of a document that should behave slightly different. A tag is far more appropriate. | ||||
|
feedback
|
|
It's nice to have your site be accessible by users with JavaScript disabled, in which case the href points to a page that performs the same action as the JavaScript being executed. Otherwise I use "#" with a "return false;" to prevent the default action (scroll to top of the page) as others have mentioned. Googling for "javascript:void(0)" provides a lot of information on this topic. Some of them, like this one mention reasons to NOT use void(0). | ||||
|
feedback
|
|
I strongly prefer to keep my JavaScript out of my HTML markup as much as possible. If I'm using
It's very important to note that many developers out there believe that using anchor tags for click-event handlers isn't good. They'd prefer you to use a | ||||
|
feedback
|
|
Usually, you should always have a fall back link to make sure that clients with JavaScript disabled still has some functionality. This concept is called unobtrusive JavaScript. Example... Let's say you have the following search link:
You can always do the following:
That way, people with JavaScript disabled are directed to | ||||
|
feedback
|
|
There is one more important thing to remember here. Section 508 compliance. Because of it, I feel it's necessary to point out that you need the anchor tag for screen readers such as JAWS to be able to focus it through tabbing. So the solution "just use JavaScript and forget the anchor to begin with" is not an option for some of this. Firing the JavaScript inside the href is only necessary if you can't afford for the screen to jump back up to the top. You can use a settimeout for 0 seconds and have JavaScript fire to where you need focus but even the apage will jump to the top and then back. | ||||
|
feedback
|
|
Don't lose sight of the fact that your URL may be necessary -- onclick is fired before the reference is followed, so sometimes you will need to process something clientside before navigating off the page. | ||||
|
feedback
|
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.
<base>tag, these links will navigate away from the current page to the base URL. For that reason, I always avoidhref="#"– no. Oct 7 '10 at 21:25<a>) tag for something like this is semantically incorrect. You should be using abuttoninstead. Moreover, usingonclickis not a good practice. Write unobtrusive code instead. – apnerve Oct 14 '11 at 16:42