Team:UCL E/js
From 2013.igem.org
(Difference between revisions)
Line 1: | Line 1: | ||
$(document).ready(function(){ | $(document).ready(function(){ | ||
- | $("#ucligem #nav | + | $("#ucligem #nav").hover(function(){ |
$(this).animate({color:'#73B9FF'},500); | $(this).animate({color:'#73B9FF'},500); | ||
},function() { | },function() { |
Revision as of 11:12, 20 July 2013
$(document).ready(function(){
$("#ucligem #nav").hover(function(){
$(this).animate({color:'#73B9FF'},500); },function() { $(this).animate({color:'#000'},500); });
});