JavaScript Function in HREF vs OnClick() - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T11:02:22Zhttp://stackoverflow.com/feeds/question/1070760http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1070760/javascript-function-in-href-vs-onclick3JavaScript Function in HREF vs OnClick()troylar2009-07-01T18:59:35Z2009-07-02T02:29:08Z
<p>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 <code><A HREF="javascript:my_function();window.print()" ></A></code> vs. putting it in the onclick event?</p>
http://stackoverflow.com/questions/1070760/javascript-function-in-href-vs-onclick/1070788#10707889Answer by Parand for JavaScript Function in HREF vs OnClick()Parand2009-07-01T19:05:14Z2009-07-01T19:13:44Z<p>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.</p>
<p>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:</p>
<pre><code>$('a').click( function() { your_code_here; return false; } );
</code></pre>
http://stackoverflow.com/questions/1070760/javascript-function-in-href-vs-onclick/1070794#10707945Answer by SolutionYogi for JavaScript Function in HREF vs OnClick()SolutionYogi2009-07-01T19:07:12Z2009-07-01T19:07:12Z<p>This question has been discussed before:</p>
<p><a href="http://stackoverflow.com/questions/245868/what-is-the-difference-between-the-different-methods-of-putting-javascript-in-an">http://stackoverflow.com/questions/245868/what-is-the-difference-between-the-different-methods-of-putting-javascript-in-an</a></p>
http://stackoverflow.com/questions/1070760/javascript-function-in-href-vs-onclick/1070802#10708020Answer by Peter for JavaScript Function in HREF vs OnClick()Peter2009-07-01T19:08:18Z2009-07-01T19:08:18Z<p>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.</p>
http://stackoverflow.com/questions/1070760/javascript-function-in-href-vs-onclick/1070809#10708091Answer by Kamarey for JavaScript Function in HREF vs OnClick()Kamarey2009-07-01T19:09:47Z2009-07-01T19:09:47Z<p>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.</p>
http://stackoverflow.com/questions/1070760/javascript-function-in-href-vs-onclick/1070816#10708163Answer by zombat for JavaScript Function in HREF vs OnClick()zombat2009-07-01T19:10:02Z2009-07-01T19:10:02Z<p>Having <code>javascript:</code> 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).</p>
<p>A better practice would be the second way, to put your javascript into the <code>onclick</code> 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.</p>
http://stackoverflow.com/questions/1070760/javascript-function-in-href-vs-onclick/1071018#10710181Answer by Adam for JavaScript Function in HREF vs OnClick()Adam2009-07-01T19:54:11Z2009-07-01T19:54:11Z<p>In terms of javascript, one difference is the that <code>this</code> keyword in the <code>onclick</code> will refer to the DOM element whose <code>onclick</code> attribute it is (in this case the <code><a></code> element), whereas <code>this</code> in the href will refer to the <code>window</code> object.</p>
<p>In terms of presentation, if an <code>href</code> attribute is absent from a link, i.e. if you write:</p>
<blockquote>
<p><code><a onclick=" [code] "></code></p>
</blockquote>
<p>then (by default) most browsers won't use the pointer/hand cursor type when you <code>mouseover</code> the element.</p>
<p>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 <code><a></code> element like so:</p>
<blockquote>
<p>html:</p>
<p><code><a id="myLink" href="#">link text</a></code></p>
<p>javscript:</p>
<p>$('a#myLink').click(function(){ do_something(); });</p>
</blockquote>
http://stackoverflow.com/questions/1070760/javascript-function-in-href-vs-onclick/1072139#10721390Answer by strife25 for JavaScript Function in HREF vs OnClick()strife252009-07-02T02:29:08Z2009-07-02T02:29:08Z<p>the best way to do this is with:</p>
<pre><code><a href="#" onclick="someFunction(e)"></a>
</code></pre>
<p>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 </p>
<pre><code>dojo.stopEvent(event);
</code></pre>
<p>to do so.</p>