Skip to content

Instantly share code, notes, and snippets.

@michaelwilhelmsen
Created November 21, 2016 07:40
Show Gist options
  • Select an option

  • Save michaelwilhelmsen/0fb56ea9feafa1cdf92410452eb45cb5 to your computer and use it in GitHub Desktop.

Select an option

Save michaelwilhelmsen/0fb56ea9feafa1cdf92410452eb45cb5 to your computer and use it in GitHub Desktop.
Automatically focus input when toggling a hidden search.
$('.search-toggle').on('click', function(e) {
$('#search input').focus();
e.preventDefault();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment