Is there any way to set focus to the document, i.e. the content area, in JavaScript? document.focus() doesn’t seem to do anything.
Is there any way to set focus to the document, i.e. the content area, in JavaScript? document.focus() doesn’t seem to do anything.
Typescript-friendly answer:
(document.activeElement as HTMLElement).blur();
Reference: https://github.com/Microsoft/TypeScript/issues/5901#issuecomment-396497729