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