I want my Button to change color every time I click on it. But it only changes color on the first click.
Button
I believe the problem is in the setColor
setColor
Using jquery, try this. if your button id is say id= clickme
$("clickme").on('çlick', function(){
$(this).css('background-color', 'grey'); .......