Tra i tag head inserisci lo script:
Codice HTML:
<script language="Javascript" type="text/javascript">
function CambiaSfondo(colore) {
switch (colore) {
case "rosso":
immagine="immaginerosso.jpg";
colore="#FF0000";
break;
case "blu":
immagine="immagineblu.jpg";
colore="#0000FF";
break;
case "verde":
immagine="immagineverde.jpg";
colore="#00FF00";
break;
}
document.body.style.backgroundImage='url('+immagine+')';
document.getElementById("tabella1").style.backgroundColor=colore;
document.getElementById("tabella2").style.backgroundColor=colore;
}
</script>
Alle tabelle assegni due id.
Codice HTML:
<table id="tabella1">
Codice HTML:
<table id="tabella2">
E poi metti i link così:
Codice HTML:
<a href="javascript:CambiaSfondo('rosso')">Rosso</a>
<a href="javascript:CambiaSfondo('blu')">Blu</a>
<a href="javascript:CambiaSfondo('verde')">Verde</a>