Skip to content

Instantly share code, notes, and snippets.

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 champsupertramp/db19313c0a456319ba50 to your computer and use it in GitHub Desktop.
Save champsupertramp/db19313c0a456319ba50 to your computer and use it in GitHub Desktop.
Ultimate Member - Submit Search form on Enter
jQuery(function(){
jQuery(".um-search form *").keypress(function(e){
if (e.which == 13) {
jQuery('.um-search form').submit();
return false;
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment