Código:
En teoría el botón (input) tendría que tener como valor "FINALIZAR LLAMADA" pero en cambio tiene como valor "Enviar consulta"... he buscado documento por documento y no he encontrado ninguna línea que contenga las palabras "Enviar consulta".... var newbutton = document.createElement('input'); //Estilo de input newbutton.style.color = "white"; newbutton.value = "FINALIZAR LLAMADA"; newbutton.type = "submit"; newbutton.style.height = "54px"; newbutton.style.width = "310px"; newbutton.style.fontFamily = "verdana"; newbutton.style.fontSize = "16px"; newbutton.style.margin = "0px"; newbutton.setAttribute("id", "newb"); newbutton.setAttribute("name", "enviar"); if (document.getElementById('newb')){ }else{ document.getElementById("condiv").appendChild(newbutton); document.getElementById("newb").className = "submtx";
NOTA IMPORTANTE: Este error sólo sucede en Internet Explorer en todos los demás funciona correctamente.