2008-09-25 17:54:27 8 Comments
The following are two methods of building a link that has the sole purpose of running JavaScript code. Which is better, in terms of functionality, page load speed, validation purposes, etc.?
function myJsFunc() {
alert("myJsFunc");
}
<a href="#" onclick="myJsFunc();">Run JavaScript Code</a>
or
function myJsFunc() {
alert("myJsFunc");
}
<a href="javascript:void(0)" onclick="myJsFunc();">Run JavaScript Code</a>
Related Questions
Sponsored Content
22 Answered Questions
[SOLVED] Set a default parameter value for a JavaScript function
- 2009-05-21 20:07:17
- Tilendor
- 1126339 View
- 2157 Score
- 22 Answer
- Tags: javascript function parameters default-parameters
73 Answered Questions
[SOLVED] How can I get query string values in JavaScript?
- 2009-05-23 08:10:48
- Kemal Emin
- 3334486 View
- 2702 Score
- 73 Answer
- Tags: javascript url plugins query-string
23 Answered Questions
[SOLVED] Get selected value in dropdown list using JavaScript?
- 2009-07-06 07:25:06
- Fire Hand
- 3405898 View
- 1485 Score
- 23 Answer
- Tags: javascript html-select
14 Answered Questions
[SOLVED] JavaScript function in href vs. onclick
- 2009-07-01 18:59:35
- SkunkSpinner
- 1228738 View
- 403 Score
- 14 Answer
- Tags: javascript href
29 Answered Questions
[SOLVED] Is JavaScript a pass-by-reference or pass-by-value language?
- 2009-02-05 21:23:56
- Danail Nachev
- 308008 View
- 1221 Score
- 29 Answer
- Tags: javascript pass-by-reference pass-by-value
9 Answered Questions
[SOLVED] Improve INSERT-per-second performance of SQLite?
- 2009-11-10 22:16:43
- Mike Willekes
- 360593 View
- 2710 Score
- 9 Answer
- Tags: c performance sqlite optimization
35 Answered Questions
[SOLVED] Where can I find documentation on formatting a date in JavaScript?
- 2009-06-29 05:44:03
- Naga Kiran
- 1399067 View
- 1330 Score
- 35 Answer
- Tags: javascript date datetime date-format time-format
49 Answered Questions
[SOLVED] Which equals operator (== vs ===) should be used in JavaScript comparisons?
- 2008-12-11 14:19:49
- bcasp
- 1572686 View
- 5672 Score
- 49 Answer
- Tags: javascript operators equality equality-operator identity-operator
3 Answered Questions
7 Answered Questions
[SOLVED] What is the difference between the different methods of putting JavaScript code in an <a>?
- 2008-10-29 05:16:23
- Darryl Hein
- 45434 View
- 79 Score
- 7 Answer
- Tags: javascript html href
30 comments
@TomDK 2017-03-26 23:27:35
On a modern website the use of href should be avoided if the element is only doing JavaScript functionality (not a real link).
Why? The presence of this element tells the browser that this is a link with a destination. With that, the browser will show the Open In New Tab / Window function (also triggered when you use shift+click). Doing so will result in opening the same page without the desired function triggered (resulting in user frustration).
In regards to IE: As of IE8, element styling (including hover) works if the doctype is set. Other versions of IE are not really to worry about anymore.
Only Drawback: Removing HREF removes the tabindex. To overcome this, you can use a button that's styled as a link or add a tabindex attribute using JS.
@mdesdev 2014-04-26 18:37:30
I personally use them in combination. For example:
HTML
with little bit of jQuery
or
But I'm using that just for preventing the page jumping to the top when the user clicks on an empty anchor. I'm rarely using onClick and other
on
events directly in HTML.My suggestion would be to use
<span>
element with theclass
attribute instead of an anchor. For example:Then assign the function to
.link
with a script wrapped in the body and just before the</body>
tag or in an external JavaScript document.*Note: For dynamically created elements, use:
And for dynamically created elements which are created with dynamically created elements, use:
Then you can style the span element to look like an anchor with a little CSS:
Here's a jsFiddle example of above aforementioned.
@Matt Goddard 2008-10-23 14:22:33
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:
@Matt Kantor 2009-07-22 13:43:23
LowPro is really nice for unobtrusive JS if you have a lot of complex behaviors.
@Lyes CHIOUKH 2019-01-02 15:45:25
Edited on 2019 January
In HTML5, using an a element without an href attribute is valid. It is considered to be a "placeholder hyperlink"
Example:
If after that you want to do otherwise :
1 - If your link doesn't go anywhere, don't use an
<a>
element. Use a<span>
or something else appropriate and add CSS:hover
to style it as you wish.2 - Use the
javascript:void(0)
ORjavascript:undefined
ORjavascript:;
if you want to be raw, precise and fast.@mmacaulay 2008-09-25 18:40:14
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).@AnthonyWJones 2008-09-26 07:20:27
The blog entry does not cite the reference as to why javascript:void(0) should be avoided.
@Peter Mortensen 2011-05-31 08:06:23
The link is (effectively) broken now.
@user564706 2011-07-26 11:35:44
I choose use
javascript:void(0)
, because use this could prevent right click to open the content menu. Butjavascript:;
is shorter and does the same thing.@se_pavel 2009-04-17 06:49:34
I use the following
instead
@Boann 2012-07-29 04:18:04
I use
javascript:
(no semi-colon) because it looks tidiest in the status bar on hover.@Ilya Streltsyn 2013-07-08 16:43:10
This code may cause bad surprises in older IE. At some point it used to break any animation effects with images, including rollovers and even animated gifs: groups.google.com/forum/#!topic/comp.lang.javascript/…
@Tracker1 2014-12-19 17:09:15
You can always do...
javascript:void('Do foo')
since void will return undefined regardless, it will give an indicator to the user what clicking will do. WhereDo foo
can beDelete record X
or whatever you like.@Tracker1 2011-12-15 18:41:57
I would honestly suggest neither. I would use a stylized
<button></button>
for that behavior.This way you can assign your onclick. I also suggest binding via script, not using the
onclick
attribute on the element tag. The only gotcha is the psuedo 3d text effect in older IEs that cannot be disabled.If you MUST use an A element, use
javascript:void(0);
for reasons already mentioned.NOTE: You can replace the
0
with a string such asjavascript:void('Delete record 123')
which can serve as an extra indicator that will show what the click will actually do.@Brennan Roberts 2012-07-24 01:22:27
In IE8/IE9, I'm unable to remove the 1px "3D" offset in the button's :active state.
@Tracker1 2012-07-25 20:59:38
@BrennanRoberts Yeah, unfortunately, any styling of buttons is more problematic with IE... I still feel it's probably the most appropriate approach, not that I don't break my own rules on occasion.
@Patrik Affentranger 2014-12-18 01:33:18
Then don't use
<button>
but aninput type=button
instead?@Tracker1 2014-12-19 17:06:58
@PatrikAffentranger that will have the same issue with older IE versions... I've used the
<a href="javascript:void(0)" onclick="...">...</a>
method enough that it works... just suggesting that it's less than friendly for declaring intent with markup.@tim 2015-05-13 01:39:17
I use a
DIV
tag. Easy styling, no fuss.@Tracker1 2015-05-13 20:09:55
@tim
DIV
is not semantic.@joeytwiddle 2015-09-02 12:29:00
Then use a
<clickable>
element. Or a<clickabletim>
if you prefer. Unfortunately, using a non-standard tag or a plain div might make it difficult for keyboard users to focus the element.@mjsarfatti 2016-03-14 15:00:15
This answer should be up top. If you are having this dilemma, chances are you are actually in need of a
button
. And IE9 is quickly losing market shares, fortunately, and the 1px active effect should not prevent us to use semantic markup.<a>
is a link, it's meant to send you somewhere, for actions we have<button>
's.@fijter 2008-09-25 18:59:47
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 anonclick 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:
@AnthonyWJones 2008-09-26 07:09:01
This approach restricts the 'link' to a mouse only operation. An anchor can be visited via the keyboard and its 'onclick' event is fired when the enter key is pressed.
@Hosam Aly 2009-02-28 19:21:02
Hardcoding colors in your CSS would prevent the browser from using custom colors the user may define, which can be a problem with accessibility.
@PeteT 2010-01-27 10:13:56
They boil down to the same thing it's semantics to use a span or an anchor tag. If the page url can only be generated in javascript it makes no difference where it's running from apart from as pointed out anchor tags can use keyboard navigation.
@redShadow 2011-12-14 23:15:58
<span>
s are not meant to do anything.<A>
nchors and<buttons>
are used for that!@apnerve 2012-12-28 08:33:06
Using
buttons
is a better choice here while using aspan
is not.@NibblyPig 2014-04-09 17:00:54
I think a span is better than an anchor tag. Anchor tag exists to direct you to its mandatory href attribute. If you're not going to use the href, don't use an anchor. It doesn't restrict the link to mouse only because it isn't a link. It doesn't have a href. It's more like a button but it doesn't post. The span not being meant to do anything is completely invalid. Consider a dropdown menu that activates when you hover. It's probably a combination of spans and divs, performing the function of a button that expands an area on the screen.
@Dave Newton 2015-06-17 23:53:18
@SLC But a
<span>
is meaningless to a screen reader or accessible browser, no?@TranslucentCloud 2016-08-15 11:10:10
Using
buttons
is often is a terrible idea from design point to trigger show/hide attributes of small divisions of a website, especially if there are plenty of these triggers. Lots of buttons in one place usually looks awful, if this is not some kind of a control panel. And as pointed earlier, anchors too are not designed to be JS triggers. Sospan
or maybe evendiv
looks like a better replacement, with their own downsides, but still better. There is nothing worse in the world than some gibberish in thehref
attribute. And alsospan
handles middle-click better than anything.@ps2goat 2016-12-12 18:51:11
I do this for cases where the user is not being directed somewhere, e.g., opening a modal. It's nice because then the middle button doesn't default to trying to open the link in a new tab. If I have something that navigates the user and they're allowed to open it in a new tab, I use a link (
a
tag with href) so users can open new tabs easily with middle mouse or ctrl + click. If I have something that navigates the user and I don't want them to open multiple tabs, then the button approach works.@Zach 2008-09-25 17:56:53
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.
If you use Angular2, this way works:
<a [routerLink]="" (click)="passTheSalt()">Click me</a>
.See here https://stackoverflow.com/a/45465728/2803344
@Quentin 2008-09-26 08:09:21
So in user agents with JavaScript enabled and the function supported this run a JavaScript function, falling back (for user agents where the JS fails for whatever reason) to a link to the top of the page? This is rarely a sensible fallback.
@Zach 2008-09-26 15:41:58
"ideally with a real link to follow in case the user has JavaScript disabled", it should be going to a useful page not #, even if it's just an explanation that the site needs JS to work. as for failing, I would expect the developer to use proper browser feature detection, etc before deploying.
@Brian Moeskau 2009-07-13 13:52:37
I would assume (hope) that something like this would only be for showing a popup or something similarly simple. In that case, the default would be the popup page url. If this is part of a web application, or having JS disabled would totally break the page, then this code has other issues...
@Zach 2009-07-13 23:08:02
My web apps are designed to degrade gracefully, so the link will still be a useful page. Unless your web app is a chat client or something that interactive, this should work if you put in the time to design with degradation in mind.
@Tracker1 2011-12-15 18:35:50
The issue is if myJsFunc throws an error, it won't be captured for the return false.
@Abhi Beckert 2012-03-28 06:36:40
The problem with
#
is that if the javascript doesn't run for some particular reason, it will break, sometimes very badly (eg: if you have a base href on the page,#
will usually take the user to a completely different webpage). On the other hand withvoid(0)
, if the javascript has a problem it simply won't do anything. Another nice benefit ofvoid(0)
is it takes away any necessity for cancelling the click event, which is easily forgotten and makes it impossible to attach multiple observers to the event.@uınbɐɥs 2012-09-04 19:29:53
From what I found, you have to use
onclick="event.preventDefault(); myJsFunc(); return false;"
.@Lankymart 2013-07-18 12:03:42
@AbhiBeckert Neither is right, the href should contain a URL that can be used as a fallback. Good example is initiating popups with javascript, use the URL from the href to power the popup and when javascript is disabled the link will take you to the page that would have been loaded by your popup as a fallback.
@Abhi Beckert 2013-07-18 14:55:05
@Lankymart that's nice in theory, but in the real world there are plenty of situations where there is no fallback URL. The "cancel" button on this comment box for example, has no fallback. StackOverflow has chosen not to have a href attribute at all. This makes it invalid according to the HTML spec and also causes some minor bugs in old browsers (they treat it a being an anchor instead of a clickable element).
@Lankymart 2013-07-19 08:17:23
@AbhiBeckert And that's a compelling reason because? Just because others do it doesn't mean you have to follow suit I stand by opinion and you are entitled to yours.
@Lankymart 2013-07-19 08:19:35
Personally both @Fczbkk and StevePaulo approaches are better, regardless of whether a link has a hyperlink or not you should accommodate those who are viewing your site without javascript and gracefully de-grade how ever you see fit.
@Abhi Beckert 2013-07-19 08:39:57
@Lankymart my work is billed to clients at $100 per hour. If I was to make every javascript link on my current project work without javascript, it would cost about $300,000 (there are thousands of links like that). There are not enough people visiting this website to justify the cost. Instead we would simply tell them "oh, that button won't work unless you turn javascript on." and so far we have never had any complaints. I always put a fallback in when practical, but often it simply isn't worth it. As with most things, you should learn the pros/cons of each solution and choose appropriately.
@Charlie 2017-10-04 19:47:25
Bootstrap modals from before 4.0 have a basically undocumented behavior that they will load
href
s froma
elements using AJAX unless they are exactly#
. If you are using Bootstrap 3,javascript:void(0);
hrefs will cause javascript errors:AJAX Error: error GET javascript:void(0);
In these cases you would need to upgrade to bootstrap 4 or change the href.
@Adam Tuttle 2008-09-25 17:55:34
'#'
will take the user back to the top of the page, so I usually go withvoid(0)
.javascript:;
also behaves likejavascript:void(0);
@Guvante 2008-09-25 21:22:54
The way to avoid that is to return false in the onclick event handler.
@Quentin 2008-09-26 08:10:02
Returning false in the event handler doesn't avoid that if JavaScript the JS doesn't run successfully.
@scunliffe 2008-09-27 02:46:32
using "#someNonExistantAnchorName" works well because it has nowhere to jump to.
@Abhi Beckert 2012-03-28 06:39:43
If you have a base href, then
#
or#something
will take you to that anchor on the base href page, instead of on the current page.@Lankymart 2013-07-18 12:06:22
Any use of
#
orvoid(0)
is bad practice and shouldn't be encouraged.@Neel 2014-04-17 00:23:12
The shebang (
#!
) does the trick but it's definitely bad practice.@Ilya Streltsyn 2014-09-22 09:18:02
@Neel, any anchor that doesn't actually exist in the document (e.g.
#_
) does the same trick, with the same drawbacks.@musicin3d 2017-05-03 11:31:55
@Neel At the first release of angular the author said something like, "best practices follow necessity," right before he put his script tags at the very bottom of the page.
@user6460587 2016-10-29 19:10:16
I tried both in google chrome with the developer tools, and the
id="#"
took 0.32 seconds. While thejavascript:void(0)
method took only 0.18 seconds. So in google chrome,javascript:void(0)
works better and faster.@Jochen Schultz 2017-09-21 10:58:26
Actually they don't do the same. # makes you jump to top of the page.
@Andrew Moore 2008-10-16 18:00:25
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
search.php
while your viewers with JavaScript view your enhanced functionality.@Free Consulting 2009-11-07 02:26:48
Definitely hash (
#
) is better because in JavaScript it is a pseudoscheme: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.@Free Consulting 2017-04-01 22:22:36
@Berker Yüceer, why CW?
@AnthonyWJones 2008-09-26 08:03:39
I use
javascript:void(0)
.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
return doSomething()
in the onclick and just usedoSomething()
.A second reason for avoiding
#
is that the finalreturn false;
will not execute if the called function throws an error. Hence the developers have to also remember to handle any error appropriately in the called function.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 myonclick
(or on anything) in HTML markup look like this:OR
Using
javascript:void(0)
avoids all of the above headaches, and I haven't found any examples of a downside.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
href="#"
, make sureonclick
always containsreturn false;
at the end, that any called function does not throw an error and if you attach a function dynamically to theonclick
property make sure that as well as not throwing an error it returnsfalse
.OR
Use
href="javascript:void(0)"
The second is clearly much easier to communicate.
@Timo Huovinen 2013-06-08 09:28:29
I always open every link in a new tab and this is the reason why I personally hate it when people use the
href="javascript:void(0)"
method@Lankymart 2013-07-18 11:57:48
Sorry disagree why does this answer have so many upvotes? Any use of
javascript:
should be considered bad practice, obtrusive and doesn't graceful de-grade.@sudee 2013-07-30 13:20:28
The next two answers are far better and reasonable than this one. Also the first two arguments are invalid because
event.preventDefault()
is there exactly to prevent default behavior (like jumping to the top of the page in this case) and do a better job at it without all thereturn false;
craziness.@jakub.g 2013-10-01 09:21:52
Fast-forward to 2013:
javascript:void(0)
violates Content Security Policy on CSP-enabled HTTPS pages. One option would be then to usehref='#'
andevent.preventDefault()
in the handler, but I don't like this much. Perhaps you can establish a convention to usehref='#void'
and make sure no element on the page hasid="void"
. That way, clicking a link to non-existing anchor will not scroll the page.@Nathan 2014-02-14 04:58:32
You can use "#" and then bind a click event to all links with "#" as the
href
. This would be done in jQuery with:$('a[href="#"]').click(function(e) { e.preventDefault ? e.preventDefault() : e.returnValue = false; });
@jaminroe 2014-03-11 15:05:25
@jakub.g I like the idea of using a generic hashtag the best. How would I go about preventing the url from updating in the browser? That's my only thing about this... Thanks!
@jakub.g 2014-03-11 16:37:26
@jaminroe good question; this seems to be working for me in modern browsers:
window.onhashchange = function (evt) { if(evt.newURL.endsWith("#void")) { history.replaceState(null, null, evt.oldURL); } }
Haven't tested with IE, though MDN says it doesn't supportevt.newURL
andevt.oldURL
(at least IE8).replaceState
is supported from IE10.@vikki 2014-03-22 03:59:18
How is the 2nd reason an advantage to the developer? I would not like things to carry on as usual when an error was thrown.
@jaminroe 2014-04-24 19:33:18
What about just leaving href="" blank like so. I've read that works pretty well, and does in my experience. And it's still valid
@albert 2014-05-12 02:26:37
web standards: you should only use href if you have a valid url and you should put that url between href"" prior to page load. both of your methods are horrible for accessibility, usability, every other -ility that applies to web dev
@Michael Plotke 2014-08-19 19:00:35
This is the best answer, because it actually answers the question. Most of you seem to have missed the "a link that has the sole purpose to run JavaScript code" part. All your jabbering about links in new tabs, graceful degrading, and web dev -ilities is just off topic web standards / best practice panic mongering. Not having a href might be best, but that actually decreases accessibility and can result in other unexpected behaviors.
@Jon Adams 2014-11-03 22:06:08
History lesson: The use of the hash
#
was a hack to start with. Older browsers (ie IE) wouldn't makeA
tags clickable without a non-emptyHREF
attribute, and many elements could never be clickable; hash was the only way to make something clickable and prevent navigation at the same time, since some browsers then also didn't run Javascript yet. No modern (even older IEs that are still in use today) have those problems anymore; so it's better to stick with standards and avoid both of these hacks to do it the standard appropriate way as mentioned in other answers.@jakub.g 2014-11-24 15:36:10
@TimoHuovinen
href="javascript:void(0)"
opens a blank page on middle click, whereashref="#"
opens a copy of the current page on middle click. I think the latter is much worse, especially if you're on a heavy page. Note also this happens only in Firefox: jakub-g.github.io/accessibility/onclick@stom 2015-02-28 08:45:19
i used 'javascript:void(0)' to prevent onclick page jumps, from here
@brunoais 2015-05-26 08:41:19
Why not just not use
javascript:void(0)
altogether for these cases? Why not just use adata-*
attribute and then usequerySelector()
(or equivalent) and add the event listeners for them?@giammin 2015-07-01 08:17:27
I had compatibility problem with ie8 and
javascript:void(0)
onclick did not fired on attached events@Garrett 2016-01-26 19:41:33
This is the worst answer. Use links for links, not javascript. The
javascript:
pseudo protocol was designed to replace the current document with the value returned from the expression. When the expression used evaluates to an undefined value (as some function calls do), the contents of the current page are not replaced. Regardless, some browsers interpret this as navigation and will enter into a 'navigation' state where GIF animations and plugins (such as movies) will stop and navigational features such as META refresh, assignment tolocation.href
, and image swaps fail.@jedd.ahyoung 2016-01-29 15:28:18
Of note - in today's world of client-side applications that use client-side routing, using
#
is often not an option anymore for a no-op.@Dzeimsas Zvirblis 2016-03-14 19:53:53
I have noticed another con of using
"javascript:void(0)"
in yourhref
as it regards to using Google Analytics or Webtrends. First of all I assume you are using"javascript:void(0)"
in your achor tag because it is firing a function that causes some interaction that does not leave the current URL. In my experiences, using"javascript:void(0)"
will cause your anchor tag to fire twice which has been brought to my attention by our QA department. As small as an issue it may seem, it makes using"javascript:void(0)"
quite an issue for my strict QA dept. Hope this helps someone out.@Lankymart 2016-08-03 14:28:15
@MichaelPlotke Glad I don't work with you! A link is a link however you dress it up, it's hacks like this that create more problems then they solve. It's 2016 no one should be using
#
orjavascript:void(0)
now it's poor practice whether you want to just run JavaScript or not. It's inaccessible, can cause unexpected behaviours, doesn't gracefully de-grade. It's not "panic mongering" just good sense.@Michael Plotke 2016-08-03 14:58:06
@Lankymart If I could go back in time I wouldn't have written that, certainly not so snarkily. I've changed my views. If you want an element that runs JS on click, don't use a anchor, just attach a handler via JS and CSS it however you'd like. Sorry to all I offended.
@Lankymart 2016-08-03 15:09:27
@MichaelPlotke Again I fall a foul of not looking at the timestamp...sorry was reading the comments back to front.
@Martin Tournoij 2016-08-06 00:04:41
"the final return false; will not execute if the called function throws an error." -> This problem is easily solved by using
e.preventDefault()
at the top, instead of relying on the return value. This has been the best way to do this for years. I am truly baffled why people still go around usingreturn false
.@Foo 2016-11-08 04:03:16
Can you tell me more about the different between
href="javascript:void(0)"
andhref="javascript:;"
?@Vanuan 2017-02-01 18:15:07
This answer doesn't actually explain why anchor links don't work
@Yaakov Ainspan 2017-02-28 21:22:14
Using
href="javascript:myFunc()"
in Firefox opens a new tab with the text "javascript:myFunc()" in it, instead of executing the function.@Tilak Maddy 2017-04-19 15:43:07
Hi Anthony , I would like to ask you from where did you learn JavaScript ? Which resource ? I spend a lot of time on documentation but I don't learn sufficient enough.
@Fahmi 2017-06-03 03:26:57
Don't use
<a>
if your sole purpose is just to trigger js code. Use<button>
instead.@heyjr 2018-09-21 00:40:14
I noticed that, when I leave
a
tag withouthref
attribute, the browser will automatically addhref="javascript:;"
to it. So can we just leavea
tag without href instead of addinghref="javascript:void(0)"
orhref="#"
?@Garrett 2016-01-26 19:54:18
Don't use links for the sole purpose of running JavaScript.
The use of href="#" scrolls the page to the top; the use of void(0) creates navigational problems within the browser.
Instead, use an element other than a link:
And style it with CSS:
@Quentin 2016-06-15 12:12:48
Use a button, not a span. Buttons naturally fall in the focus order so can be accessed without a mouse / trackpad / etc.
@Christophe Strobbe 2017-07-25 13:09:59
Adding ton Quentin's comment: as currently written, keyboard users won't reach the
span
element because it is a non-focusable element. That's why you need a button.@Useless Code 2017-11-22 11:45:07
You can make it focusable by adding
tabindex="0"
to the span. That said, using button is better because it gives you the desired functionality for free. To make it accessible using a span you not only need to attach a click handler, but a keyboard event handler that looks for presses of space bar or enter key and then fires the normal click handler. You would also want to change the second CSS selector to.funcActuator:hover, .funcActuator:focus
so the fact that the element has focus is apparent.@Spammer Joe 2011-09-24 01:55:06
Using just
#
makes some funny movements, so I would recommend to use#self
if you would like to save on typing efforts ofJavaScript bla, bla,
.@alonso.torres 2011-11-25 16:49:05
WOW, thumbs up for this tip. Never knew that you could use the
#self
for named tags, and avoid the annoying browser behavior of jumping to top of page. Thank you.@cHao 2013-05-17 16:16:13
For reference,
#self
doesn't appear to be special. Any fragment identifier that doesn't match the name or id of any element in the document (and isn't blank or "top") should have the same effect.@Douglas.Sesar 2014-06-21 15:42:25
I usually just use a made up anchor name, but I think I will start doing this to be consistent across my work.
@jakub.g 2014-11-24 15:30:36
I suggested establishing
#void
convention in the other comment but actually#self
is as short and easy to memorize. Anything is better than#
@pmirnd 2017-02-10 21:57:14
But if you click that link it will be weird to the user to see "#void" in the url, looks like and error or bug, same with #self or whatever.
@dnetix 2015-08-13 01:01:04
I usually go for
It's shorter than javascript:void(0) and does the same.
@Junaid Atari 2016-04-26 18:44:50
I do the same too!
@Clever Human 2008-09-25 21:20:35
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
<span>
tag is far more appropriate.@AndFisher 2017-01-18 14:42:33
Also if you were to replace an
a
with aspan
, you'll need to remember to make it focusable via keyboard.@balupton 2012-02-25 02:08:18
Doing
<a href="#" onclick="myJsFunc();">Link</a>
or<a href="javascript:void(0)" onclick="myJsFunc();">Link</a>
or whatever else that contains anonclick
attribute - was okay back five years ago, though now it can be a bad practice. Here's why:It promotes the practice of obtrusive JavaScript - which has turned out to be difficult to maintain and difficult to scale. More on this in Unobtrusive JavaScript.
You're spending your time writing incredibly overly verbose code - which has very little (if any) benefit to your codebase.
There are now better, easier, and more maintainable and scalable ways of accomplishing the desired result.
The unobtrusive JavaScript way
Just don't have a
href
attribute at all! Any good CSS reset would take care of the missing default cursor style, so that is a non-issue. Then attach your JavaScript functionality using graceful and unobtrusive best practices - which are more maintainable as your JavaScript logic stays in JavaScript, instead of in your markup - which is essential when you start developing large scale JavaScript applications which require your logic to be split up into blackboxed components and templates. More on this in Large-scale JavaScript Application ArchitectureSimple code example
A blackboxed Backbone.js example
For 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
Omitting the
href
attribute on thea
element will cause the element to not be accessible usingtab
key navigation. If you wish for those elements to be accessible via thetab
key, you can set thetabindex
attribute, or usebutton
elements instead. You can easily style button elements to look like normal links as mentioned in Tracker1's answer.Omitting the
href
attribute on thea
element will cause Internet Explorer 6 and Internet Explorer 7 to not take on thea:hover
styling, which is why we have added a simple JavaScript shim to accomplish this viaa.hover
instead. Which is perfectly okay, as if you don't have a href attribute and no graceful degradation then your link won't work anyway - and you'll have bigger issues to worry about.If you want your action to still work with JavaScript disabled, then using an
a
element with ahref
attribute that goes to some URL that will perform the action manually instead of via an Ajax request or whatever should be the way to go. If you are doing this, then you want to ensure you do anevent.preventDefault()
on your click call to make sure when the button is clicked it does not follow the link. This option is called graceful degradation.@Thomas Davis 2012-02-25 02:21:18
Be careful, leaving href attributes off is not cross browser compatible and you will lose out on things such as hover effects in internet explorer
@Christopher Camps 2012-07-10 02:02:07
I tend to agree with this answer, but there is another issue that arises from omitting the href attribute. In many browsers if you click the link multiple times very quickly it will actually select text on the page. Setting the href solves that particular problem which is not easy to fix otherwise.
@Brennan Roberts 2012-07-25 00:18:47
Beware: the link-styled
button
approach suggested here is plagued by the unavoidable "3d" active state in IE9 and lower.@Jordan Rieger 2013-05-29 19:33:49
I find this answer to be overly dogmatic. There are times when you just want to apply the JS behavior to 1 or 2 a href's. In that case it's overkill to define extra CSS and inject a whole JS function. In some cases (e.g. adding content via a CMS) you are actually not allowed to inject new CSS or standalone JS, and inline is all you can do. I don't see how the inline solution is any less maintainable in practice for 1 or 2 simple JS a href's. Always be suspicious of broad general statements on bad practice, including this one :)
@Timo Huovinen 2013-06-08 09:23:16
It would make more sense to add 2 classes, one called
cancel
and the otheraction
, then apply the css only to.action
and the javascript only to.action.cancel
@user659025 2013-07-10 14:30:54
A full disagree here. While I also promote unobtrusive JavaScript, an anchor that has a "javascript:;" and it's actual events bound somewhere else is not bad practice. And it is always better than leaving the attribute out completely.
@Abhi Beckert 2013-07-18 15:00:00
With all those "notes" that are hard to solve (setting a tabindex is asking for trouble on a complex page!). Far better to just do
javascript:void(0)
. That is the pragmatic answer, and the only sensible answer in the real world.@jkade 2013-09-06 17:32:01
If you care about making your web application accessible (and you should), simplicity and sanity argues for href. Madness lies in the direction of tabindex.
@Jacob Mouka 2013-11-18 17:09:18
The missing href attribute is a problem. Many browsers don't display the link mouse cursor (yes, it can be added in CSS, but this is complicating things already) and I've seen some accessibility software ignore links without href (they are treated as just text). This answer has good ideas but the real world isn't as neat.
@Charles 2015-04-15 14:46:52
No, no, no!!! Don't EVER do this! You have just killed accessibility. Users with screen readers will no longer be able to use your application.
@Seega 2016-09-01 07:49:21
I'm agreeing with my two pre-posters. Without the href you are not even able to navigate through the links by using tabs. This answer should be deleted!
@TomDK 2017-03-26 23:37:26
According to sitepoint.com/community/t/anchors-without-href/6690/4 Screen-readers are fine with anchors that don't use href. The use of "#" is actually worse as it adds open in new tab functionality which only sends the use back to the original page at the top without the desired functionality.
@AlxGol 2014-11-18 15:42:45
Why not using this? This doesn't scroll page up.
@Alex Yorke 2014-12-29 20:20:32
This actually seems like a very good solution, thanks. I've replaced
href="#"
withrole="button"
everywhere and then stuck*[role="button"] { cursor:pointer; }
in the CSS and that seems to work very well without the need for unnecessary JS :)@Martin 2017-03-14 14:18:59
As others have said, this cannot be activated using the keyboard.
@vol7ron 2012-08-22 16:08:03
You could use the href and remove all links that have only hashes:
HTML:
JS:
@squidbe 2014-03-03 22:12:49
This is bad, particularly in IE (up to version 10, not sure about 11). Clicking a link with an empty href results in an unnecessary (and probably unwanted) request being fired, and in IE, it attempts to open Windows Explorer.
@vol7ron 2014-06-02 16:13:33
@squidbe: This was an old answer but I think that depends on how your JS is written. If you didn't want that to fire, I think you would
onclick="return run_foo()"
and have run_foo returnfalse
or just add areturn false
line after the function is called. The point of this answer was that you could remove href tags when JS is enabled. The ideal solution would be to populate the href with a fail-safe link most likely to a server-side rendered pagehref="render/full_page.script?arg=value" onclick="loadAJAXContent.call(this); return false"
@squidbe 2014-06-02 18:03:39
You are correct about the fail-safe solution. My point was that the href attribute value is not intended to ever be an empty string, and setting it to empty can cause unwanted side effects. Even when you return false, if there are errors in your script, the undesired request and undesired Windows behavior still occur. If the option is between leaving the hash in the href and removing it via script, I think it's better to leave it.
@Anders M. 2014-03-20 10:55:57
I'd say the best way is to make an href anchor to an ID you'd never use, like #Do1Not2Use3This4Id5 or a similar ID, that you are 100% sure no one will use and won't offend people.
Javascript:void(0)
is a bad idea and violates Content Security Policy on CSP-enabled HTTPS pages https://developer.mozilla.org/en/docs/Security/CSP (thanks to @jakub.g)#
will have the user jump back to the top when pressedBasically no one mentioned 5 in this article which I think is important as your site comes off as unprofessional if it suddenly starts selecting things around the link.
@Vinny Fonseca 2014-03-07 14:28:04
I use href="#" for links that I want a dummy behaviour for. Then I use this code:
Meaning if the href equals to a hash (*="#") it prevents the default link behaviour, thus still allowing you to write functionality for it, and it doesn't affect anchor clicks.
@Ashish Kumar 2014-02-13 03:34:00
So, when you are doing some JavaScript things with an
<a />
tag and if you puthref="#"
as well, you can add return false at the end of the event (in case of inline event binding) like:Or you can change the href attribute with JavaScript like:
or
But semantically, all the above ways to achieve this are wrong (it works fine though). If any element is not created to navigate the page and that have some JavaScript things associated with it, then it should not be a
<a>
tag.You can simply use a
<button />
instead to do things or any other element like b, span or whatever fits there as per your need, because you are allowed to add events on all the elements.So, there is one benefit to use
<a href="#">
. You get the cursor pointer by default on that element when you doa href="#"
. For that, I think you can use CSS for this likecursor:pointer;
which solves this problem also.And at the end, if you are binding the event from the JavaScript code itself, there you can do
event.preventDefault()
to achieve this if you are using<a>
tag, but if you are not using a<a>
tag for this, there you get an advantage, you don't need to do this.So, if you see, it's better not to use a tag for this kind of stuff.
@achairapart 2013-06-29 14:43:14
If there is no
href
maybe there is no reason to use an anchor tag.You can attach events (click, hover, etc.) on almost every element, so why not just use a
span
or adiv
?And for users with JavaScript disabled: if there isn't a fallback (for example, an alternative
href
), they should at least not be able to see and interact with that element at all, whatever it is an<a>
or a<span>
tag.@Stacks on Stacks on Stacks 2012-06-25 19:34:39
When I've got several faux-links, I prefer to give them a class of 'no-link'.
Then in jQuery, I add the following code:
And for the HTML, the link is simply
I don't like using Hash-Tags unless they're used for anchors, and I only do the above when I've got more than two faux-links, otherwise I go with javascript:void(0).
Typically, I like to just avoid using a link at all and just wrap something around in a span and use that as a way to active some JavaScript code, like a pop-up or a content-reveal.
@naveen 2008-10-23 09:55:57
It would be better to use jQuery,
and omit both
href="#"
andhref="javascript:void(0)"
.The anchor tag markup will be like
Simple enough!
@Matt Kantor 2009-07-22 13:40:38
This is what I was going to say. If a link has a fallback url that makes sense, use that. Otherwise, just omit the href or use something more semantically appropriate than an <a>. If the only reason everyone is advocating including the href is to get the finger on hover, a simple "a { cursor: pointer; }" will do the trick.
@mtyaka 2009-11-24 10:19:20
May I say this is the option that SO decided to go with. Check the "flag" links, for instance.
@Nicolás 2010-07-07 03:51:39
That gives terrible accessibility. Try it in SO: you can't flag a post without using the mouse. The "link" and "edit" links are accessible by tabbing, but "flag" isn't.
@Fatih 2011-03-23 14:53:23
why using jQuery instead of css a { cursor: pointer; }
@Scott Rippey 2011-06-17 19:32:17
I agree with this option. If the anchor has no purpose other than JavaScript, it shouldn't have a href. @Fatih: Using jQuery means that if JavaScript is disabled, the link will NOT have a pointer.
@Muhd 2011-12-14 22:39:35
If you are going to go this route, why not bind the click using jQuery as well? Part of the great thing about using jQuery is the ability to seperate your javascript from your markup.
@MMM 2014-01-29 15:09:19
I can't believe this answer has 11 votes. It's terrible. Why are you adding a style via Javascript (and jQuery??), and then defining your onclick action in HTML? Terrible.
@AndFisher 2017-01-18 14:45:30
Better to add a
js
class to the body, and Let CSS handle the CSS.body.js a{cursor: pointer;}
@Eric Yin 2011-12-16 00:09:40
I would use:
Reasons:
href
simple, search engines need it. If you use anything else ( such as a string), it may cause a404 not found
error.return false;
, the page doesn't jump to the top or break theback
button.@Berker Yüceer 2011-12-30 11:32:45
i dont agree with "1." cause it gives error when u put ur script link when scripts are not allowed. so that kind of links should be added with the js code. that way people can avoid those links while script is not allowed and see no errors at all.