Advertisement
Guest User

Untitled

a guest
May 3rd, 2016
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.56 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Test</title>
  5. </head>
  6. <body>
  7. <h2>AJAX</h2>
  8. <button type="button">Request data</button>
  9. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.12.1/jquery.min.js"></script>
  10. <script>
  11.     $(document).ready( function() {
  12.  
  13.     $('button').click( function() {
  14.  
  15.             $.ajax({
  16.                url      : 'response.php',
  17.                dataType : 'text',
  18.                success : function(data) {
  19.                   $('h2').css('color', data);
  20.             }
  21.         });
  22.  
  23.     });
  24.  
  25.     });
  26. </script>
  27. </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement