Ver Mensaje Individual
  #4 (permalink)  
Antiguo 08/05/2012, 16:17
Avatar de karmish
karmish
 
Fecha de Ingreso: mayo-2006
Mensajes: 272
Antigüedad: 18 años, 7 meses
Puntos: 1
Respuesta: Necesito abrir un formulario desde otro formulario

Bueno intente hacer lo que me decías pero sigo haciendo algo mal

Intentare ser mas claro

primero tengo un ligthbox
Código:
<script type="text/javascript" src="js/thickbox.js"></script>
<link href="css/thickbox2.css" rel="stylesheet" type="text/css" />


<a href="consultafac.php?TB_iframe=true&height=480&width=640" class="thickbox">
Ejecuta Ligthbox
</a>

Quiero lograr el mismo efecto, pero desde un formulario

y esto es lo que tengo en el formulario

Código:
<script type="text/javascript"> 
function ventanaSecundaria (url){ 
  window.open (url,"nuevo","TB_iframe=true,width=640,height=480") 
} 
</script>

 <form action="ingresa.php" method="post">
    
    <input name="numero" type="text" class="numdes" size="20"  onClick="ventanaSecundaria('consultafac.php?TB_iframe=true&height=480&width=640')">
     
   <input class="volver" type="submit" value=" " title="Volver" onClick="history.go(-1);return false;">
    <input class="grabar1" type="submit" value=" " title="grabar">
    
</form>
Espero ahora te quede mas claro