I want to run a simple JavaScript function on a click without any redirection.
Is there any difference or benefit between putting the JavaScript call in the href attribute (like this: <a href="javascript:my_function();window.print();">....</a>) vs. putting it in the onclick attribute (binding it to the onclick event)?
|
|
|||||||
|
|
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:
|
|||||||||||
|
|
bad:
good:
better:
even better 1:
even better 2:
Why better? because best: Use jQuery or other similar framework to attach onclick handler by element's ID.
|
|||||||||||||
|
|
In terms of javascript, one difference is the that In terms of presentation, if an
then (by default) most browsers won't use the pointer/hand cursor type when you 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
|
||||
|
|
|
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. |
|||
|
|
|
Having A better practice would be the second way, to put your javascript into the |
|||||||||
|
|
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. |
|||
|
|
|
the best way to do this is with:
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
to do so. |
|||||||||
|
|
I use
A long way around but it gets the job done. use an A style to simplify then it becomes:
|
|||||||||
|