Ver Mensaje Individual
  #8 (permalink)  
Antiguo 07/10/2008, 15:20
[email protected]
 
Fecha de Ingreso: octubre-2005
Mensajes: 405
Antigüedad: 18 años, 6 meses
Puntos: 1
Respuesta: Cuenta atras de fecha.

Muchisimas gracias, funciono a la perfeccion, se agradece su siempre buena atenciçon y colaboraciçon.

GRACIAS A TODOS.

Cita:
Iniciado por David el Grande Ver Mensaje
Yo he probado haciendo una ligera modificación al script de JavierB, y me funcionó sin problemas restando 300 días:
Código javascript:
Ver original
  1. hoy = new Date();
  2. hoy.setTime(hoy.getTime()-24*60*60*1000*300); // Restamos 300 días
  3. mes = hoy.getMonth()+1;
  4. alert(hoy.getDate()+ '/' + mes + '/' + hoy.getFullYear());