Código HTML:
Este es el Script que utilizo para cargar las paginasVer original
Código Javascript:
Este es el codigo de compra_reportm_sol.php el cual al ejecutarlo solo si me realiza la accion de submitVer original
$(document).ready(function() { $("#link1").click(function(event) { $(".resu").load('sys_compra/compra_agregar.php'); }); $("#link11").click(function(event) { $(".resu").load('sys_compra/compra_reportem_sol.php'); }); });
Código HTML:
Ver original
<fieldset> <table> <form name="impres1" action="compra_reportem_mes.php" method="post" onsubmit="presupuesto1()"> <tr> </tr> <tr> <td> <select name="id"> </select> </td> <td> <input name="idy" required placeholder="Ingrese Año"/> </td> <td> <select name="est"> </select> </td> <td> <input type="submit" value="IMPRIMIR REPORTE"> </td> </tr> </form> </table> </fieldset>
Código Javascript:
lo que hace esto es abrir una ventana emergente con el resultado de la consulta en PDF Ver original
function presupuesto1() { var mds = "width="+screen.width+"px,height="+(screen.height - 50) + "px,top=0,left=0"; window.open('', 'formpopup', mds); impres1.target = 'formpopup'; };