I'm trying to animate a link color change from the current color to an other color.
$(window).load(function(){
    $('.article-preview h1 a').hover(function(){
        $(this).animate({
            color: #ffffff
        }, 1500);
    });
});
For some reason it's not working. I'm using the jQuery color plugin.
You need to wrap the hex triplet in a string, change this:
color: #ffffff
to this:
color: "#ffffff"
                        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