me gustaria recibir ideas de la forma correcta de hacer esto o algo similar
Desde ya muchas gracias :)
Código:
-----index.php----- <html> <head> <script cargo jquery 1.9></script> <script> $(document).ready(function(){ $('#boton').click(function(){ $('#contenedor').load('pagina.php'); }); }); </script> </head> <body> <div id="contenedor"> <input type="button" id="boton" /> </div> </body> </html> -----pagina.php----- <script> $(document).ready(function(){ $('#otroboton').click(function(){ $('#contenedor').load('otra.php'); }); }); </script> <p>pagina</p> <input type="button" id="otroboton" />