Team:University College London/js/initjs

From 2012.igem.org

(Difference between revisions)
(Created page with "$(document).ready(function(){ alert("hello world"); });")
Line 1: Line 1:
$(document).ready(function(){
$(document).ready(function(){
-
     alert("hello world");
+
     $('#wikimenutoggle').mouseover(function(){ 
 +
          alert("hello world");
 +
      });
});
});

Revision as of 00:27, 14 June 2012

$(document).ready(function(){

    $('#wikimenutoggle').mouseover(function(){   
         alert("hello world");
     });

});