Advertisement
Guest User

Untitled

a guest
May 19th, 2013
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  3.  
  4. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  5. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">
  6. <head>
  7. <title>My page</title>
  8. </head>
  9. <body>
  10. <script type="text/javascript" src="../jquery-1.9.1.js"></script>
  11. <script type="text/javascript">
  12. $(document).ready(function() {
  13. $('#button_ajax').click(function() {
  14. alert("success1");
  15. $.get('http://localhost/cgi-bin/test_cgi', function(data) {
  16. alert("success2 :"+ data);
  17. });
  18. });
  19. });
  20. </script>
  21.  
  22. <button id="button_ajax">Clique!</button>
  23. <div id="ajax">
  24. <p>Test de merde</p>
  25. </div>
  26.  
  27. </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement