Ver Mensaje Individual
  #4 (permalink)  
Antiguo 26/05/2008, 17:36
antoniom55
 
Fecha de Ingreso: febrero-2007
Mensajes: 38
Antigüedad: 18 años
Puntos: 0
Respuesta: Cambiar color de textfield

Hola FantasmaFito

No te servira algo como esto?

<form id="form1" name="form1" method="post" action="">
<label>
<input name="textfield" type="text" onfocusin="this.style.backgroundColor='yellow'" onfocusout="this.style.backgroundColor='#ffffff'" />
</label>
<br />
<label>
<input type="text" name="textfield2" onfocusin="this.style.backgroundColor='yellow'" onfocusout="this.style.backgroundColor='#ffffff'" />
</label>
</form>

;)