I have the following code:
$('a.home-page-link').mouseover(function() {
$(this).animate({
opacity: 0.4
}, 200, function());
});
For some reason, this refuses to "play ball", any ideas?
Cheers!
Try adding {} to the second function
$('a.home-page-link').mouseover(function() {
$(this).animate({
opacity: 0.4
}, 200, function() { } );
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With