JSFiddle - React, Tailwind, and code Playground
HTML
<div id="list2" style="background:#98bf21;height:100px;width:100px;position:absolute;">
color
</div>
CSS
#list2{ width:200px; height:100px; border:1px solid #ccc; background-color:#ccc}
JavaScript
$(document).ready(function () {
$("#list2").click(function () {
alert('hii');
$("#list2").animate({
backgroundColor: 'red',
});
});
});