Button
Flips between Black and White text when Clicked.
by XTREME104
HTML
<button id="button" onclick="if (this.style.color=='white') {this.style.color='black';} else {this.style.color='white';}">Click</button>
by XTREME104
<button id="button" onclick="if (this.style.color=='white') {this.style.color='black';} else {this.style.color='white';}">Click</button>