I have the following code
$(".Div2").click(function () {
$(this).css("background-color","yellow");
});
It works perfectly for me when I click, it changes to the yellow color, how it could return to the original color when I clicked or double click again.
Any suggestions
Thank you very much.