Skip to content

Instantly share code, notes, and snippets.

@hmbashar
Created December 10, 2023 14:30
Show Gist options
  • Save hmbashar/fc63c48bb7ab5acb4388e8dca4bee0e9 to your computer and use it in GitHub Desktop.
Save hmbashar/fc63c48bb7ab5acb4388e8dca4bee0e9 to your computer and use it in GitHub Desktop.
JavaScript to prevent form submission with Enter key
// JavaScript to prevent form submission with Enter key
document.getElementById('suprd_search_form_area').addEventListener('keydown', function(e) {
if (e.key === 'Enter') {
e.preventDefault();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment