Send this to a friend
1 <script src="http://code.jquery.com/jquery-latest.js"></script>
2 <script src="http://ui.jquery.com/latest/ui/effects.core.js"></script>
3 <script type="text/javascript">
4 $(document).ready( function() {
5 $(".link").mouseover(function() {
6 $(this).animate({ color: "#022d3f" }, 1000);
7 }).mouseout(function() {
8 $(this).animate({ color: "#ccc" }, 1000);
9 })
10 </script>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="http://ui.jquery.com/latest/ui/effects.core.js"></script>
<script type="text/javascript">
$(document).ready( function() {
$(".link").mouseover(function() {
$(this).animate({ color: "#022d3f" }, 1000);
}).mouseout(function() {
$(this).animate({ color: "#ccc" }, 1000);
})
</script>