Hola
Cita:
Iniciado por zerokilled - en iexplorer no puedes cambiar el tipo de un elemento INPUT. ¡una gran pena! para lograr algo similar tendrias que crear un nuevo elemento INPUT y declarar el tipo antes de agregarlo al documento.
Ahh mira, no lo sabía
Prueba a usar DOM
Código Javascript
:
Ver originalfunction mostrarForm(id){
document.getElementById('f_'+id).value = document.getElementById(id).innerHTML;
document.getElementById('f_'+id).style.display = "block";
}
function ocultaForm(id){
document.getElementById(id.split('_')[1]+'_'+id.split('_')[2]).innerHTML = document.getElementById(id).value;
document.getElementById(id).style.display = "none";
}
Código HTML:
Ver original<div id="nombre_mod" onclick="mostrarForm(this.id);">Nombre del modulo
</div><input type="text" id="f_nombre_mod" style="display:none;" value="" onblur="ocultaForm(this.id);" />
Suerte