Ver Mensaje Individual
  #2 (permalink)  
Antiguo 18/01/2009, 17:56
JhonPierre
 
Fecha de Ingreso: julio-2007
Mensajes: 19
Antigüedad: 17 años, 7 meses
Puntos: 0
Respuesta: Popup con un input de texto al clickear

Código javascript:
Ver original
  1. <img ... onclick="mostrarVentana();"></img>
  2.  
  3. //...............
  4. <script ....>
  5. function mostrarVentana() {
  6.     window.showModalDialog("MiPaginaConMiBotonYCaja.html?parametro1=par1", "titulo" , 'dialogWidth:650px;dialogHeight:150px;resiza ble:yes;toolbar:no;menubar:no;scrollbars:yes;help: no');
  7. }
  8. </script>


Luego Creas Tu Pagina MiPaginaConMiBotonYCaja.html, ..


Bytes

JHONPI.