set text color of button in javascript code example
Example: how to change test colo on js button
var about;
function init() {
about = document.getElementById("about").innerHTML;
about.style.color = 'blue';
}
var about;
function init() {
about = document.getElementById("about").innerHTML;
about.style.color = 'blue';
}