You are currently browsing the archives for 10 January 2010

Hello JQuery

  • Posted on January 10, 2010 at 8:12 am



Click here for Hello!

// This code syntax requires that JQuery be imported.
 $(document).ready(function() {
   $("a[name=hello]").click(function() {
     alert("Hello world!");
   });
 });