Ver Mensaje Individual
  #2 (permalink)  
Antiguo 25/12/2009, 10:52
Avatar de lucasphp
lucasphp
 
Fecha de Ingreso: mayo-2009
Ubicación: Misiones
Mensajes: 170
Antigüedad: 15 años, 8 meses
Puntos: 3
Respuesta: problemilla con script

Método obsoleto - según leí -: toGMTSTRING()

y es now.toGMTSTRING();

así funciona:

Código HTML:
<script language="JavaScript" type="text/javascript">

var now=new Date();
localtime = now.toString();
utctime = now.toUTCString();
document.write ("<b> hora local: </b>" + localtime + "<br>");
document.write ("<b> hora universal: </b>" + utctime);

</script>