Files
30-seconds-of-code/snippets/elementIsFocused.md
Isabelle Viktoria Maciohsek 27c168ce55 Bake date into snippets
2021-06-13 13:55:00 +03:00

392 B

title, tags, firstSeen, lastUpdated
title tags firstSeen lastUpdated
elementIsFocused browser,beginner 2020-08-07T15:21:27+03:00 2020-10-19T18:51:03+03:00

Checks if the given element is focused.

  • Use Document.activeElement to determine if the given element is focused.
const elementIsFocused = el => (el === document.activeElement);
elementIsFocused(el); // true if the element is focused