Reputation: 5
What code should I insert within this line of code to change the font color into white and how should I do it ?
document.getElementById('clockbox').innerHTML=""+tday[nday]+", "+tmonth[nmonth]+" "+ndate+", "+nyear+" | "+nhour+":"+nmin+":"+nsec+ap+"";
setTimeout("GetClock()", 1000);
Upvotes: 0
Views: 90
Reputation: 8193
var x = document.getElementById('clockbox');
x.style.color = '#FFFFFF';
Upvotes: 3