Skip to content

Instantly share code, notes, and snippets.

@SteveJonesDev
Created October 20, 2022 04:03
Show Gist options
  • Select an option

  • Save SteveJonesDev/9cd0912ae37f47ca498c2b6279d76d02 to your computer and use it in GitHub Desktop.

Select an option

Save SteveJonesDev/9cd0912ae37f47ca498c2b6279d76d02 to your computer and use it in GitHub Desktop.
FacetWP submit search field with enter key
$(document).keypress(function(event){
var keycode = (event.keyCode ? event.keyCode : event.which);
if(keycode == '13'){
if($('.facetwp-search').is(":focus")){
FWP.refresh();
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment