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