Ver Mensaje Individual
  #6 (permalink)  
Antiguo 25/06/2010, 07:10
Avatar de _cronos2
_cronos2
Colaborador
 
Fecha de Ingreso: junio-2010
Mensajes: 2.062
Antigüedad: 13 años, 11 meses
Puntos: 310
Respuesta: Abrir pop up mediante un formulario

De una manera sencilla:
Código HTML:
Ver original
  1. :::PRUEBA:::
  2. </head>
  3. <form name="miFormulario" action='' method='post' onsubmit='window.open(document.forms['miFormulario'].elements['testo'].value,"popup");'>
  4. <input type='text' name='testo' />
  5. <input type="submit" value="Enviar" name="enviar" />
  6. </form>
  7. </body>
  8. </html>
Abre el popup con el valor que tenga la caja de texto.

Saludos (: