I have invoked some code in my HTML that puts a button in a state of having a background of white when it's clicked.
How do I click on the button and revert back to its original position? This is what I have so far in my code:
$("#button").click(function(){
$("#button").css("background", "white");
});
What code should I put here to have it back to original form when clicked?