JQuery and mouseover problem
5 answers
$('a.home-page-link').mouseover(function() {
$(this).animate({
opacity: 0.4
}, 200, function(){});
});
make sure your callback function is declared correctly. then it should work. test it here: http://jsfiddle.net/5XwKG/
0
a source to share