jquery css set background color code example
Example 1: edit css jquery
$('.ama').css('color','red');
Example 2: jquery fedein background color
$("div" ).hover(
function() {
$(this).animate({backgroundColor: "#fff"}, 'slow');
}, function() {
$(this).animate({backgroundColor:"#000"},'slow');
});