Ver Mensaje Individual
  #1 (permalink)  
Antiguo 06/02/2015, 17:09
pablos_cent
 
Fecha de Ingreso: junio-2012
Mensajes: 53
Antigüedad: 11 años, 10 meses
Puntos: 1
Código erroneo

Hola, quería preguntarles si ustedes ven algo mal aquí:

Código:
  // Temporizador
	var seconds = 5;
	setInterval(
	  function() {
		document.getElementById('seconds').innerHTML = --seconds;
	  }, 1000
	);