SyntaxFix
Write A Post
Hire A Developer
Questions
You can do this with JQueryUI:
$('a').mouseenter(function(){ $(this).animate({ color: '#ff0000' }, 1000); }).mouseout(function(){ $(this).animate({ color: '#000000' }, 1000); });
http://jsfiddle.net/dWCbk/