Ver Mensaje Individual
  #2 (permalink)  
Antiguo 27/06/2006, 19:33
Avatar de SiR.CARAJ0DIDA
SiR.CARAJ0DIDA
 
Fecha de Ingreso: junio-2004
Ubicación: Acá
Mensajes: 1.166
Antigüedad: 20 años, 6 meses
Puntos: 4
creo q no se puede cambiar el type dinamicamente, lo que se me ocurre es reemplazar el nodo por otro
Código:
function changeType(o) {
var ip = document.createElement('input');
ip.type = "password";
ip.name = o.name;
ip.value = o.value;
o.parentNode.replaceChild(ip, o);
}
<INPUT name="password" type="text" value="Password" onfocus="changeType(this)" />
__________________
Internet Explorer SuckS
Download FireFox