Advertisement
lessientelrunya

ajax1

Jul 20th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.77 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.             $(document).ready(function() {
  9.  
  10.                 $('#quote').submit(function() {
  11.  
  12.                     var url = '/quote?symbol=' + $('#symbol').val();
  13.                     $.getJSON(url, function(data) {
  14.                         alert(data.price);
  15.                     });
  16.                     return false;
  17.  
  18.                 });
  19.  
  20.             });
  21.  
  22.         </script>
  23.         <title>ajax1</title>
  24.     </head>
  25.     <body>
  26.         <form id="quote">
  27.             <input autocomplete="off" autofocus id="symbol" placeholder="Symbol" type="text"/>
  28.             <input type="submit" value="Get Quote"/>
  29.         </form>
  30.     </body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement