BlitzKraft / saythanks.io

Spreading Thankfulness in Open Source.

Home Page:https://saythanks.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

keyboard shortcut for "Send Note"

kgashok opened this issue · comments

Need a keyboard shortcut <Ctrl> + <Enter> for "Send Note" button.

image

If it is a form then, One thing we know is by default we can submit forms with the enter key, it is not the same when forms have a Textarea tag or contenteditable attribute. For that, we can use jquery to trigger the submit button.
$('form').keydown(function(event) { if (event.ctrlKey && event.keyCode === 13) { $(this).trigger('submit'); } })
Ref - https://harlemsquirrel.github.io/javascript/2017/02/27/submit-forms-ctrl-enter.html

@ASHISHKUMAR2411 do you want to take this issue up?

I would like to work on this

This only works from the Sender Dialog box. And that's okay.