Hai risolto ? ti posto un esempio di come si usa un semplice javascript:
Codice:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="it">
<head>
<title>Semplice orologio - Esempio JavaScript scaricato da HTML.it</title>
<meta http-equiv="Content-type" content="text/html; charset=iso-8859-1" />
<meta http-equiv="Content-Language" content="it" />
<meta name="Robots" content="All" />
<meta name="Description" content="HTML.it - il sito italiano sul Web publishing" />
<meta name="Keywords" content="Ad ogni apertura di pagina questo script genera un differente colore di sfondo." />
<meta name="Owner" content="HTML.it srl" />
<meta name="Author" content="HTML.it srl" />
<meta name="Copyright" content="HTML.it srl" />
<script language="JavaScript" type="text/javascript">
<!-- Copyright 2003, Sandeep Gangadharan -->
<!-- For more free scripts go to http://www.sivamdesign.com/scripts/ -->
<!--
function sivamtime() {
now=new Date();
hour=now.getHours();
min=now.getMinutes();
sec=now.getSeconds();
if (min<=9) { min="0"+min; }
if (sec<=9) { sec="0"+sec; }
if (hour>12) { hour=hour-12; add="pm"; }
else { hour=hour; add="am"; }
if (hour==12) { add="pm"; }
time = ((hour<=9) ? "0"+hour : hour) + ":" + min + ":" + sec + " " + add;
if (document.getElementById) { document.getElementById('theTime').innerHTML = time; }
else if (document.layers) {
document.layers.theTime.document.write(time);
document.layers.theTime.document.close(); }
setTimeout("sivamtime()", 1000);
}
window.onload = sivamtime;
</script>
</head>
<body>
<h1 align="center">Semplice orologio</h1>
<span id="theTime" style="position:absolute; left:375px; top:63px; font-family: arial; font-size: 9pt; width:81px; height:55px"></span>
<br />
</body>
</html>
copialo in un file html e apri il file con il browser ti farà vedere un orologgio
fatto in javascript.
Come vedi nel file lo script è racchiuso tra i tag :
Codice:
<script>
.................
</script>
mentre lo script si mette dentro i tag <head> così:
Codice:
<head>
<script>
.................
.................
</script>
</head>