1
I have the following Jquery code:
$(".add").click(function(e) {
$(".saida").addClass("backgroundRed");
});
and the following css:
.backgroundRed {
color: #FFF;
background: #c1272d;
}
It’s all right, he changes the color of the div when I change the class but I want him to change the color of the div for 3 seconds and then return the previous color, how do I do it ?
vlw!!!!!!!!!!!!!
– Alan PS