Detect Enter Key Presses In Text Input Fields
Enter has been pressed 0 times
Notes
- I set this up becuse I needed away to let folks hit enter when they want to select something and the 'click' and 'input' handlers don't register the Enter key expliclty
- This approach uses `keyup` because keypress is deprecated
TODO
- Look at: https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/enterKeyHint
- Check if there a accessabilty concerns
- Check on prevent default type stuff here too
Referneces
- https://developer.mozilla.org/en-US/docs/Web/API/Element/keyup_event