Skip to content

Instantly share code, notes, and snippets.

@ruinunes
Created February 19, 2020 10:20
Show Gist options
  • Save ruinunes/8c77e472e8052603dd848d3560047977 to your computer and use it in GitHub Desktop.
Save ruinunes/8c77e472e8052603dd848d3560047977 to your computer and use it in GitHub Desktop.
Prevent submit coffescript behaviour
$(document).on 'keypress', '[data-behaviour="prevent-submit"]', (ev) ->
ev.preventDefault() if ev.keyCode == 13 && ev.target.tagName != 'TEXTAREA'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment