Team:UCL E/js

From 2013.igem.org

(Difference between revisions)
(Created page with "$(document).ready(function(){ $("ucligem nav a").on('hover', function(e) { if(e.type == 'mouseenter') { $(this).animate({color:'#73B9FF'},500); } else { $(th...")
 
(12 intermediate revisions not shown)
Line 1: Line 1:
$(document).ready(function(){
$(document).ready(function(){
-
 
-
$("ucligem nav a").on('hover', function(e) {
 
-
    if(e.type == 'mouseenter') {
 
-
      $(this).animate({color:'#73B9FF'},500);
 
-
    } else {
 
-
      $(this).animate({color:'#000'},500);
 
-
    }
 
-
});​
 
-
 
});
});

Latest revision as of 11:33, 20 July 2013

$(document).ready(function(){

});