Listen for onfocus events on document
If you want to set an event listener on document for an input's onFocus
event, you'll find there is no "onFocus" event for document
. Instead you can use the focusin
event listener:
So if you had dynamic events you can achieve this:
Tweet