ciao,
ho un timer che dopo 3 minuti deve cambiare colore:
(tickingTheTock gestisce il timer)


.
.
.
function color() {
document.getElementById("timerdiv").style.color='# FF0000';
}



</script>


</head>
<body onload= "tickingTheTock(); timer=setTimeout("color()",30000)" onblur="self.focus();" style="color: #FFFF00; background-color: #363636" >
<h3>elapsed time..</h3>
<div id="timerdiv"></div>
<div align="center">
</body>
</html>


ma non funge!!! dove sbaglio?

Grazie
Q