Skip to content

Instantly share code, notes, and snippets.

@bennettmcelwee
Last active February 10, 2016 23:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bennettmcelwee/f374bbbaf23d6fbf3aa6 to your computer and use it in GitHub Desktop.
Save bennettmcelwee/f374bbbaf23d6fbf3aa6 to your computer and use it in GitHub Desktop.
Allmusic search
<title>Search</title>
<script>
const name = 'AllMusic.com';
const baseUrl = 'http://www.allmusic.com/';
const searchRel = 'search/all/';
var s = window.prompt('Search ' + name, '');
window.location.href = s ? baseUrl + searchRel + s : baseUrl;
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment