I have a table with some styling. It’s like:
<table class="table_design" id="cart">
<tr>
<td>something</td>
<td>something else</td>
</tr>
</table>
I tried:
$("#cart").animate({backgroundColor: '#FF0000'}, 'slow');
and
$("#cart").effect("highlight", {}, 3000);
But, They both are not working.
What do you recommend?
Include jQuery UI into your project and the
.animatemethod will animate colors.You can get it from a CDN hosted by either Microsoft or Google.