up vote 16 down vote favorite
4
share [g+] share [fb]

I want to run a simple JavaScript function on a click, that is NOT a redirect. Is there any difference or benefit between putting the JavaScript call in <A HREF="javascript:my_function();window.print()" ></A> vs. putting it in the onclick event?

link|improve this question

65% accept rate
feedback

7 Answers

up vote 14 down vote accepted

Putting the onclick within the href would offend those who believe strongly in separation of content from behavior/action. The argument is that your html content should remain focused solely on content, not on presentation or behavior.

The typical path these days is to use a javascript library (eg. jquery) and create an event handler using that library. It would look something like:

$('a').click( function() { your_code_here; return false; } );
link|improve this answer
4  
function(e)({e.preventDefault(); /* code here */ }); – Jonathan Sampson Jul 1 '09 at 19:07
Or mootools, prototype, dojo ... or plain on javascript, but that'd be a whole lot more code but worth the excercise. – rpflo Jul 1 '09 at 19:10
2  
If you don't have to do anything with the event object, plain javascript is pretty simple. Get the DOM node with obj = document.getElementById(), then set obj.onclick = foo – Matt Bridges Jul 1 '09 at 19:24
feedback

Having javascript: in any attribute that isn't specifically for scripting is an outdated method of HTML. While technically it works, you're still assigning javascript properties to a non-script attribute, which isn't good practice. It can even fail on old browsers, or even some modern ones (a googled forum post seemd to indicate that Opera does not like 'javascript:' urls).

A better practice would be the second way, to put your javascript into the onclick attribute, which is ignored if no scripting functionality is available. Place a valid URL in the href field (commonly '#') for fallback for those who do not have javascript.

link|improve this answer
I don't see how there's any difference between a 'javascript:' href and a '#' href with an onclick attribute. Both are equally useless for browsers without JS enabled. – harto Jul 2 '09 at 2:40
1  
harto, that's not actually correct. '#' is an indicator for a named link, it is not a javascript identifier. It is a valid URL, and does not require Javascript to be recognized. – zombat Jul 2 '09 at 6:13
feedback

In terms of javascript, one difference is the that this keyword in the onclick will refer to the DOM element whose onclick attribute it is (in this case the <a> element), whereas this in the href will refer to the window object.

In terms of presentation, if an href attribute is absent from a link, i.e. if you write:

<a onclick=" [code] ">

then (by default) most browsers won't use the pointer/hand cursor type when you mouseover the element.

However, if you're asking what is the best way to get dynamic action from the click of a DOM object, then attaching an event using javascript separate from the content of the document is the best way to go. You could do this in a number of ways. A common way is to use a javascript library like jQuery to bind an event to the <a> element like so:

html:

<a id="myLink" href="#">link text</a>

jQuery:

$('a#myLink').click(function(){ do_something(); });

link|improve this answer
feedback

In addition to all here, the href is shown on browser's status bar, and onclick not. I think it's not user friendly to show javascript code there.

link|improve this answer
feedback

Personally, I find putting javascript calls in the HREF tag annoying. I usually don't really pay attention to whether or not something is a javascript link or not, and often times want to open things in a new window. When I try doing this with one of these types of links, I get a blank page with nothing on it and javascript in my location bar. However, this is sidestepped a bit by using an onlick.

link|improve this answer
feedback

the best way to do this is with:

<a href="#" onclick="someFunction(e)"></a>

The problem is that this WILL add a hash (#) to the end of the page's URL in the browser, thus requiring the user to click the back button twice to go to the page before yours. Considering this, you need to add some code to stop event propagation. Most javascript toolkits will already have a function for this. For example, the dojo toolkit uses

dojo.stopEvent(event);

to do so.

link|improve this answer
I would like to warn that if you use href="#" the browser will look for a named anchor tag and since it won't find it, then it'll make the window to scroll to the top of the page, something that might not be noticeable if you're already at the top. To avoid this behavior use: href="javascript:;" instead. – alonso.torres Nov 25 '11 at 16:04
@alonso.torres Good point, but that's why I mentioned the use of dojo.stopEvent() - it will stop event propagation/bubbling and the default behavior of clicking the anchor. – strife25 Nov 26 '11 at 21:36
feedback

Your Answer

 
or
required, but never shown

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