Advertisement
Guest User

Untitled

a guest
Feb 27th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <div class="container" id="contenedor">
  2. <script type="text/javascript">
  3. $(document).ready(function(){
  4. $("#botonAjax").on("click", function(){
  5. var nom = $("#nombre").val();
  6.  
  7.  
  8. $("#cargador").load(
  9. "$nom",
  10. {"nom" : nom }
  11. );
  12. });
  13. });
  14. </script>
  15. <input type="text" id="nombre" value=""/>
  16.  
  17.  
  18. <h1><button class="btn btn-info" id="botonAjax">Enviar</button></h1>
  19. </div>
  20. <div id="cargador">
  21. </div>
  22. <?php
  23. $nom = $_POST["nom"];
  24. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement