I'm trying to make a div background color to fadeOut slow
html
<div class="bg">...........</div>
I used this jquery
$('.bg').css('backgroundColor','#dedede');
setTimeout(function(){
$('.bg').css('backgroundColor','#ffffff');
}, 1000);
How to add the fadeOut effect?