Estimados gurues, esta funcion corre perfectamente en IE pero no en firefox, aunque en el panel de errores de firefox no muestra ningun error, basicamente se manda el contenido de un textbox a una opcion de un select, este es el codigo completo:
<script>
function dale(){
var opt = this.document.createElement("option");
opt.setAttribute("value","");
opt.appendChild(this.document.createTextNode(this. document.getElementById("texto").getAttribute("val ue")));
this.document.getElementById("select").appendChild (opt);
}
</script>
Formulario:
<html><head>
<input type="text" id="texto" name="texto">
<select name="select" size="10" id="select" >
<input type="button" value="dale" id="dale" onClick="dale()">
</head> </body>
Desde ya mil gracias por cualquier ayuda que puedan darme.