I'm trying to change my navigation background color with an animation but it's not working.
I currently got the following code:
//NAV
$(document).ready(function(){
$(window).scroll(function() {
if ($(document).scrollTop() > 50) {
$("#posnav").animate({
backgroundColor: "#aa0000"
}, 1000 );
} else {
$("#posnav").animate({
backgroundColor: "#transparant"
}, 1000 );
}
});
});