Team:Alberta/application.js

From 2010.igem.org

(Difference between revisions)
Line 10: Line 10:
   $('.achieve-link').click(function(){
   $('.achieve-link').click(function(){
     document.location="https://2010.igem.org/Team:Alberta/Achievements";
     document.location="https://2010.igem.org/Team:Alberta/Achievements";
-
    alert("HEY!");
 
   });
   });
});
});

Revision as of 00:19, 26 October 2010

// This file for javascript that we want to include on all pages

$(document).ready(function(){

 // show the drop down list on hover
 $('li.headlink').hover(
   function() { $('ul', this).show(); },
   function() { $('ul', this).hide(); }
 );
 $('.achieve-link').click(function(){
   document.location="https://2010.igem.org/Team:Alberta/Achievements";
 });

});