Skip to content

Instantly share code, notes, and snippets.

@dana-ross
Created February 10, 2013 05:20
Show Gist options
  • Save dana-ross/4748495 to your computer and use it in GitHub Desktop.
Save dana-ross/4748495 to your computer and use it in GitHub Desktop.
Prevent people from pressing enter in a WordPress search box and getting redirected to the search results page
<script>jQuery(function() { jQuery('input[name="s"]').on('keypress', function(event) {if( event.which == 13 ) { event.preventDefault(); }});});</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment