Ver Mensaje Individual
  #7 (permalink)  
Antiguo 25/11/2008, 05:44
karliky
 
Fecha de Ingreso: septiembre-2004
Mensajes: 324
Antigüedad: 20 años, 2 meses
Puntos: 13
Respuesta: Problema con textarea y select

Cita:
Iniciado por David el Grande Ver Mensaje
Tanto txt como segundo3 deben ir entre comillas, de la forma como está el intérprete pensará que son variables ("txt", "segundo3").
BIENNNNNN!!
Muchas gracias!
Al final el codigo quedó asi:
Código PHP:
function addselectdesdetext(){
var    
emisor document.getElementById("txt").value;
var    
receptor document.getElementById("segundo3");
    
posicion receptor.options.length;
    
receptor.options[posicion] = new Option(emisoremisor); 

añadí .value al final de getelemntbyid y lo puse en comillas!!!!
GRACIAS!DAVID EL GRANDISIMO!