Skip to content

Instantly share code, notes, and snippets.

@bennettmcelwee
Last active February 11, 2016 00:29
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/11d46f7c023cd141543a to your computer and use it in GitHub Desktop.
Save bennettmcelwee/11d46f7c023cd141543a to your computer and use it in GitHub Desktop.
Show a search menu
<title>Search</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
.hide { display: none; }
.search, #term, #go {
display: block;
font: 20px/50px sans-serif;
width: 100%;
}
#term { padding-left: 10px; }
</style>
<div id="searches"></div>
<form id="searchform" class="hide">
<input id="term"/>
<button id="go">Search</button>
</form>
<script>
const searches = [
{
name: 'AllMusic.com',
baseUrl: 'http://www.allmusic.com/',
searchRel: 'search/all/%s'
},
{
name: 'Bennett\'s Notebook',
baseUrl: 'http://thunderguy.com/',
searchRel: 'notebook/search/%s'
}
];
var list = document.getElementById('searches');
var form = document.getElementById('searchform');
var input = document.getElementById('term');
var button = document.getElementById('go');
searches.forEach(function(search) {
var item = document.createElement('button');
item.className = 'search';
item.innerHTML = search.name;
item.onclick = ask.bind(null, search);
list.appendChild(item);
})
function ask(search) {
button.innerHTML = 'Search ' + search.name;
button.onclick = function(event) {
event.preventDefault();
doSearch(search);
};
list.className = 'hide';
form.className = '';
term.focus();
}
function doSearch(search) {
window.location.href = input.value ? search.baseUrl + search.searchRel.replace('%s', input.value) : search.baseUrl;
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment