View Single Post
06-16-2008, 10:59 PM
#2
Jme is offline Jme
Status: I'm new around here
Join date: Apr 2008
Location:
Expertise:
Software:
 
Posts: 12
iTrader: 0 / 0%
 

Jme is on a distinguished road

  Old

Well, you'd simply do.
Code:
document.bgColor = "red";
document.fgColor = "black";
Or you could ahve a function..
Code:
function bgcolour(what)
{
document.bgColor = what;
}

<input type="button" onclick="bgcolour("red");" />
Hope this helped..