PDA

View Full Version : How Do I change the Website Background with Links?


appleguy6142
03-07-2009, 12:21 PM
Hey!
I want to make a Javascript that allows you to change the Backgound from White to Black

I have two images - black.gif and white.gif

When I click on on black.gif i want the Background to change to Black and Visa Versa

How can I do that?

¥åßßå
03-08-2009, 04:40 AM
<img src="black.gif" onclick="document.body.style.backgroundColor='#000';" alt="black" />
<img src="white.gif" onclick="document.body.style.backgroundColor='#fff';" alt="white" />

¥