Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. <html>
  2.  
  3. <head>
  4. <title>The jQuery Example</title>
  5. <script type="text/javascript"
  6. src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
  7.  
  8. <script type="text/javascript" language="javascript">
  9. $(document).ready(function () {
  10.  
  11. $("#driver").click(function (event) {
  12. $.ajax({
  13. url: "http://",
  14. username: "",
  15. password: "",
  16. dataType: 'jsonp',
  17. function (data) {
  18. $('#stage').html(data);
  19. },
  20. });
  21. });
  22.  
  23. });
  24. </script>
  25. </head>
  26.  
  27. <body>
  28.  
  29. <p>Click on the button to load result.html file −</p>
  30.  
  31. <span id="stage" style="background-color:#cc0;">
  32. STAGE
  33. </span>
  34.  
  35. <div><input type="button" id="driver"
  36. value="Load Data"/></div>
  37.  
  38. </body>
  39.  
  40. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement