edu.vitangelo
(usa Debian)
Enviado em 02/07/2012 - 20:15h
copiei para a diretorio documentos... funciona.
no servidor debian nao funciona...
e agora?
segue o script
<html>
<head>
<script type="text/javascript">
function UR_Start()
{
UR_Nu = new Date;
UR_Indhold = showFilled(UR_Nu.getHours()) + ":" + showFilled(UR_Nu.getMinutes()) + ":" + showFilled(UR_Nu.getSeconds());
document.getElementById("ur").innerHTML = UR_Indhold;
setTimeout("UR_Start()",1000);
}
function showFilled(Value)
{
return (Value > 9) ? "" + Value : "0" + Value;
}
</script>
</head>
<body onload="UR_Start()">
<font id="ur" size="10" face="Trebuchet MS, Verdana, Arial, sans-serif" color="#DAD3B7"></font>