Skip to content

Instantly share code, notes, and snippets.

@erdum
Created February 5, 2024 20:12
Show Gist options
  • Save erdum/b98007104391e6923827d525a330fc93 to your computer and use it in GitHub Desktop.
Save erdum/b98007104391e6923827d525a330fc93 to your computer and use it in GitHub Desktop.
Check if a element or its child has current focus
function hasFocus(element) {
return element.contains(document.activeElement);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment