Skip to content

Instantly share code, notes, and snippets.

@hergaiety
Created December 26, 2016 05:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hergaiety/8c44391ba0aae7bcce793c4f4da7f1e4 to your computer and use it in GitHub Desktop.
Save hergaiety/8c44391ba0aae7bcce793c4f4da7f1e4 to your computer and use it in GitHub Desktop.
Boolean for whether the user is focused on an input or textarea anywhere.
let userIsTypingStuff = document.querySelectorAll('input:focus, textarea:focus').length !== 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment