Advertisement
Guest User

crawler

a guest
Sep 13th, 2014
316
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>
  5.         Lyrics Finder
  6.     </title>
  7.     <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
  8. </head>
  9. <body>
  10. <input type="text" name="query" id="query-string"/>
  11. <button onclick="getLyrics()">Search</button>
  12.  
  13. <script>
  14.     function getLyrics() {
  15.         var query = document.getElementById("query-string");
  16.         $.get("http://search.azlyrics.com/search.php", function(data) {
  17.             alert(data);
  18.         });
  19.     }
  20. </script>
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement