Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title>
- Lyrics Finder
- </title>
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
- </head>
- <body>
- <input type="text" name="query" id="query-string"/>
- <button onclick="getLyrics()">Search</button>
- <script>
- function getLyrics() {
- var query = document.getElementById("query-string");
- $.get("http://search.azlyrics.com/search.php", function(data) {
- alert(data);
- });
- }
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement