Created
June 4, 2018 19:36
-
-
Save fdorantesm/ac0319ef3dfe6578af61a09070c7ec96 to your computer and use it in GitHub Desktop.
Submit forms with ctrl/cmd + enter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| window.addEventListener('load', function(){ | |
| forms = document.getElementsByTagName('form') | |
| for (form of forms) { | |
| form.addEventListener('keydown', function(e) { | |
| if (e.keyCode == 13 && e.metaKey) { | |
| $button = form.querySelector('button[type="submit"]') | |
| $button.click() | |
| return false | |
| } | |
| }) | |
| } | |
| }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment