up vote 9 down vote favorite
5
share [g+] share [fb]

How To Use A Link To Call Javascript?

link|improve this question

feedback

7 Answers

up vote 6 down vote accepted
<a onclick="jsfunction" href="#">

or

<a onclick="jsfunction" href="javascript:void(0);">
link|improve this answer
1  
I'd recommend the second one, as the first one scrolls you to the top of the page. – Matt Grande Mar 27 '09 at 1:39
Yep it definitely will, unless you add a "return false;" after your function. – Chelsea Mar 27 '09 at 1:40
3  
This is 1998 code. Use one of the unobtrusive solutions. Please. – Andrew Hedges Mar 27 '09 at 2:05
2  
Use neither one! Links are for linking, they're not dummy elements to call javascript. – I.devries Mar 27 '09 at 7:19
2  
This should not be the answer – Josh Stodola Mar 29 '09 at 4:44
show 2 more comments
feedback

Unobtrusive JavaScript, no library dependency:

<html>
<head>
    <script type="text/javascript">

        // Wait for the page to load first
        window.onload = function() {

          //Get a reference to the link on the page
          // with an id of "mylink"
          var a = document.getElementById("mylink");

          //Set code to run when the link is clicked
          // by assigning a function to "onclick"
          a.onclick = function() {

            // Your code here...

            //If you don't want the link to actually 
            // redirect the browser to another page,
            // "google.com" in our example here, then
            // return false at the end of this block.
            // Note that this also prevents event bubbling,
            // which is probably what we want here, but won't 
            // always be the case.
            return false;
          }
        }
    </script>
</head>
<body>
    <a ID="mylink" href="http://www.google.com">linky</a>        
</body>
</html>
link|improve this answer
Can you explain why this is better than the currently accepted answer, and where the script should go in the page (because this is pretty clearly a beginner-level question)? – Bill the Lizard Mar 28 '09 at 14:42
Sure thing. Updated. – EndangeredMassa Mar 28 '09 at 15:07
So what do I put in for the href if I don't want to redirect the user and just want to run some code? Edit: I see that it can be left blank: href="". – SabreWolfy Jan 23 at 14:12
This reloads the page though, so other form elements are reset. Using a "link" implementation to run the JavaScript does require reloading the page. – SabreWolfy Jan 23 at 14:20
It won't redirect the browser. You should put the real url in the href even though your javascript will replace that action. That way, if they don't have javascript enabled, your link still works. – EndangeredMassa 2 days ago
feedback

Or, if you're using PrototypeJS

<script type="text/javascript>
  Event.observe( $('thelink'), 'click', function(event) {
      //do stuff

      Event.stop(event);
  }
</script>

<a href="#" id="thelink">This is the link</a>
link|improve this answer
Unobtrusive, I like it! – Matt Grande Mar 27 '09 at 1:45
I love not having to put event handling functions in-line. – Mark Biek Mar 27 '09 at 1:51
It's the only way to go. Please vote down the inline answers. It's a practice for which there is no excuse these days. – Andrew Hedges Mar 27 '09 at 2:07
@Andrew: Please leave a comment along with your downvote explaining why the inline answers are bad. – Bill the Lizard Mar 28 '09 at 14:36
feedback

And, why not unobtrusive with jQuery:

  $(function() {
    $("#unobtrusive").click(function(e) {
      e.preventDefault(); // if desired...
      // other methods to call...
    });
  });

HTML

<a id="unobtrusive" href="http://jquery.com">jquery</a>
link|improve this answer
feedback

Unobtrusive Javascript has many many advantages, here are the steps it takes and why it's good to use.

  1. the link loads as normal:

    <a id="DaLink" href="http://host/toAnewPage.html">click here</a>

this is important becuase it will work for browsers with javascript not enabled, or if there is an error in the javascript code that doesn't work.

  1. javascript runs on page load:

     window.onload = function(){
            document.getElementById("DaLink").onclick = function(){
                   if(funcitonToCall()){
                       // most important step in this whole process
                       return false;
                   }
            }
     }
    
  2. if the javascript runs successfully, maybe loading the content in the current page with javascript, the return false cancels the link firing. in other words putting return false has the effect of disabling the link if the javascript ran successfully. While allowing it to run if the javascript does not, making a nice backup so your content gets displayed either way, for search engines and if your code breaks, or is viewed on an non-javascript system.

best book on the subject is "Dom Scription" by Jeremy Keith

link|improve this answer
feedback
<a href="javascript:alert('Hello!');">Clicky</a>
link|improve this answer
feedback

I think you can use the onclick event, something like this:

<a onclick="jsFunction();">
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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