vote up 1 vote down star

How To Use A Link To Call Javascript?

flag

7 Answers

vote up 0 vote down check
<a onclick="jsfunction" href="#">

or

<a onclick="jsfunction" href="javascript:void(0);">
link|flag
I'd recommend the second one, as the first one scrolls you to the top of the page. – Matt Grande Mar 27 at 1:39
Yep it definitely will, unless you add a "return false;" after your function. – fluid_chelsea Mar 27 at 1:40
Yes, use the 2nd suggestion – TravisO Mar 27 at 1:50
This is 1998 code. Use one of the unobtrusive solutions. Please. – Andrew Hedges Mar 27 at 2:05
Use neither one! Links are for linking, they're not dummy elements to call javascript. – Vatos Mar 27 at 7:19
show 2 more comments
vote up 11 vote down

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.
            return false;
          }
        }
    </script>
</head>
<body>
    <a ID="mylink" href="http://www.google.com">linky</a>        
</body>
</html>
link|flag
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 at 14:42
Sure thing. Updated. – EndangeredMassa Mar 28 at 15:07
vote up 4 vote down

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|flag
Unobtrusive, I like it! – Matt Grande Mar 27 at 1:45
I love not having to put event handling functions in-line. – Mark Biek Mar 27 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 at 2:07
@Andrew: Please leave a comment along with your downvote explaining why the inline answers are bad. – Bill the Lizard Mar 28 at 14:36
vote up 2 vote down

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|flag
vote up 1 vote down
<a href="javascript:alert('Hello!');">Clicky</a>
link|flag
vote up 0 vote down

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

<a onclick="jsFunction();">
link|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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