Hello how to change the color of a circle in turn with the same button without the preceding circle does not change color
$(document).ready(function(){
$("#btn1").click(function(){
$("#circle1").css("color", "green");
});
});
thanks you for your help