Advertisement
lessientelrunya

ajax0

Jul 20th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.74 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <html>
  4.     <head>
  5.         <script src="https://code.jquery.com/jquery-latest.min.js"></script>
  6.         <script>
  7.  
  8.             /**
  9.              * Gets a quote via JSON.
  10.              */
  11.             function quote()
  12.             {
  13.                 var url = '/quote?symbol=' + $('#symbol').val();
  14.                 $.getJSON(url, function(data) {
  15.                     alert(data.price);
  16.                 });
  17.             }
  18.  
  19.         </script>
  20.         <title>ajax0</title>
  21.     </head>
  22.     <body>
  23.         <form onsubmit="quote(); return false;">
  24.             <input autocomplete="off" autofocus id="symbol" placeholder="Symbol" type="text"/>
  25.             <input type="submit" value="Get Quote"/>
  26.         </form>
  27.     </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement