Tema: Dos Ayudas!
Ver Mensaje Individual
  #2 (permalink)  
Antiguo 27/08/2009, 09:24
Avatar de goyo_
goyo_
 
Fecha de Ingreso: agosto-2009
Mensajes: 91
Antigüedad: 14 años, 9 meses
Puntos: 1
Respuesta: Dos Ayudas!

Tu primer problema lo resolvi de la siguiente forma:

Código PHP:
<body>

<
input id="foo">

<
script>
function 
color() {
    var 
that this;
    
    
that.style.background 'red';
    
setTimeout(function() {that.style.background 'white'}, 250);
}

document.getElementById('foo').onclick color;
</script>

</body>