how to change jquery color code example
Example 1: how to change the background color in jquery
$("#co").click(function(){
$(this).css({"backgroundColor" : "blue"});
});
Example 2: jquery change font color
$(this).css('color', 'red');
$("#co").click(function(){
$(this).css({"backgroundColor" : "blue"});
});
$(this).css('color', 'red');