Skip to content

Instantly share code, notes, and snippets.

@rsmelo92
Created February 6, 2018 20:33
Show Gist options
  • Save rsmelo92/5b047f15c979432428cd0c2d965a6074 to your computer and use it in GitHub Desktop.
Save rsmelo92/5b047f15c979432428cd0c2d965a6074 to your computer and use it in GitHub Desktop.
form enter key event
$(‘form’).on(‘submit’, (event)=>{
event.preventDefault();
// Do what you want here
// In this case get input value
// Do a search
// Redirect to results page
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment