Ver Mensaje Individual
  #3 (permalink)  
Antiguo 01/07/2010, 16:03
K-SuMa
 
Fecha de Ingreso: diciembre-2007
Mensajes: 50
Antigüedad: 17 años
Puntos: 1
Respuesta: pasar variables

ups me olvide los formulario tienen el atributo target tambien asi que tendrias q agregarle ese atributo para que te abra en una ventana diferente.


Cita:
Iniciado por K-SuMa Ver Mensaje
GABRIL,

se me ocurre que podrias crear un formulario con dom y javascript y luego enviarlo a tu pagina popup, pero lo que no estoy seguro es q si puedas darle las opciones del window.open, bueno espero te sirva de ayuda este codigo =)

Código:
frm = document.createElement("form");// creamos el formulario
frm.action = 'tupaginapopup.php';
frm.method = 'POST';
frm.target = 'nombredetuventana'; 
ctrl_1 = document.createElement["input"];// creamos un control
ctrl_1.setAttribute("type", "text"];
ctrl_1.setAttribute("name", "control_1"];
frm.appendChild(control): // lo añadimos al form
frm.submit() // enviamos x ultimo el formulario
Salu2,
K-suma

Salu2,
K-suma