Skip to content

Instantly share code, notes, and snippets.

@braginteractive
Created April 11, 2017 22:20
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 braginteractive/9d8e2239a1f97792bdadda4de49a0b0f to your computer and use it in GitHub Desktop.
Save braginteractive/9d8e2239a1f97792bdadda4de49a0b0f to your computer and use it in GitHub Desktop.
Toggle the search bar in WordPress
jQuery(document).ready(function($){
$('.fa-search').on('click', function() {
$('.search-bar').slideToggle();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment