Ver Mensaje Individual
  #5 (permalink)  
Antiguo 31/01/2007, 12:48
nevergame
 
Fecha de Ingreso: julio-2006
Ubicación: sevilla
Mensajes: 251
Antigüedad: 17 años, 10 meses
Puntos: 5
Re: JavaScript ha dejado de funcionar

por ejemplo me dice que esta funcion no existe cuando si existe

//Devuelve una cadena con la fecha completa
function fecha(){
dows = new Array("domingo","lunes","martes","miércoles","juev es","viernes","sábado");
months = new Array("enero","febrero","marzo","abril","mayo","ju nio","julio","agosto","septiembre","octubre","novi embre","diciembre");
now = new Date();
dow = now.getDay();
d = now.getDate();
m = now.getMonth();
h = now.getTime();
y = now.getFullYear();
document.write("Castilleja de la Cuesta, a " +dows[dow]+" "+d+" de "+months[m]+" del "+y);}