Ver Mensaje Individual
  #2 (permalink)  
Antiguo 18/10/2003, 10:54
Avatar de Gpastor
Gpastor
Colaborador
 
Fecha de Ingreso: octubre-2003
Mensajes: 3.547
Antigüedad: 21 años, 2 meses
Puntos: 80
Hola jorge 2003 espero este código te sirva, no soy muy experto en esto pero esto de seguro te va ayudar.
Avisame si funciona chau............

<html>
<head>
<title> Fecha actual</title>
</head>

<body onLoad="show5()">
<span id="liveclock" style="position:absolute;left:0;top:0;">
</span>

<script language="JavaScript">
<!--

function show5(){
if (!document.layers&&!document.all&&!document.getEle mentById)
return
var Digital=new Date()
var hours=Digital.getHours()
var minutes=Digital.getMinutes()
var seconds=Digital.getSeconds()
var dn="AM"
if (hours>12){
dn="PM"
hours=hours-12
}
if (hours==0)
hours=12
if (minutes<=9)
minutes="0"+minutes
if (seconds<=9)
seconds="0"+seconds
//change font size here to your desire
myclock="<font size='5' face='Arial' color='red'><b><font size='1'>Hora actual:</font>"+hours+":"+minutes+":"
+seconds+" "+dn+"</b></font></BR>"
if (document.layers){
document.layers.liveclock.document.write(myclock)
document.layers.liveclock.document.close()
}
else if (document.all)
liveclock.innerHTML=myclock
else if (document.getElementById)
document.getElementById("liveclock").innerHTML=myc lock
setTimeout("show5()",1000)
}

//-->
</script>
<b>
Hoy dia es:</b>
<script>

var mydate=new Date();
var year=mydate.getYear();
if (year < 1000)
year+=1900;
var day=mydate.getDay();
var month=mydate.getMonth()+1;
if (month<10)
month="0"+month;
var daym=mydate.getDate();
if (daym<10)
daym="0"+daym;
document.write("<font color='000000' face='Arial'><b>"+daym+"/"+month+"/"+year+"</b></font>")

</script>

</body>
</html>
__________________
<Forospyware> - <ASAP Member>