JavaScript Function in HREF vs OnClick() - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T11:02:22Z http://stackoverflow.com/feeds/question/1070760 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1070760/javascript-function-in-href-vs-onclick 3 JavaScript Function in HREF vs OnClick() troylar 2009-07-01T18:59:35Z 2009-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>&lt;A HREF="javascript:my_function();window.print()" &gt;&lt;/A&gt;</code> vs. putting it in the onclick event?</p> http://stackoverflow.com/questions/1070760/javascript-function-in-href-vs-onclick/1070788#1070788 9 Answer by Parand for JavaScript Function in HREF vs OnClick() Parand 2009-07-01T19:05:14Z 2009-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#1070794 5 Answer by SolutionYogi for JavaScript Function in HREF vs OnClick() SolutionYogi 2009-07-01T19:07:12Z 2009-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#1070802 0 Answer by Peter for JavaScript Function in HREF vs OnClick() Peter 2009-07-01T19:08:18Z 2009-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#1070809 1 Answer by Kamarey for JavaScript Function in HREF vs OnClick() Kamarey 2009-07-01T19:09:47Z 2009-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#1070816 3 Answer by zombat for JavaScript Function in HREF vs OnClick() zombat 2009-07-01T19:10:02Z 2009-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#1071018 1 Answer by Adam for JavaScript Function in HREF vs OnClick() Adam 2009-07-01T19:54:11Z 2009-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>&lt;a&gt;</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>&lt;a onclick=" [code] "&gt;</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>&lt;a&gt;</code> element like so:</p> <blockquote> <p>html:</p> <p><code>&lt;a id="myLink" href="#"&gt;link text&lt;/a&gt;</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#1072139 0 Answer by strife25 for JavaScript Function in HREF vs OnClick() strife25 2009-07-02T02:29:08Z 2009-07-02T02:29:08Z <p>the best way to do this is with:</p> <pre><code>&lt;a href="#" onclick="someFunction(e)"&gt;&lt;/a&gt; </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>