Skip to content

Instantly share code, notes, and snippets.

@codenameEli
Last active January 14, 2016 21:08
Show Gist options
  • Save codenameEli/3a2b665d85518b1f9e98 to your computer and use it in GitHub Desktop.
Save codenameEli/3a2b665d85518b1f9e98 to your computer and use it in GitHub Desktop.
Prevent search from being submitted if the search field is empty. This is for WordPress general search form.
$('form[role="search"]').on('submit', function(ev) {
var query = $(this).find('input[type="search"]').val();
if ( query.length <= 1 ) {
ev.preventDefault();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment