css change button onclick code example
Example 1: css onclick change color
<style>
.dabutton:focus {
background-color:yellow;
}
</style>
<button class="dabutton"></button> // <-- usage
Example 2: javascript change button onclick
function Bar() {
document.getElementById("a").onclick = Foo();
}