347 B
347 B
title, tags
| title | tags |
|---|---|
| elementIsFocused | browser,intermediate |
Returns true if the given element is focused, false otherwise.
- Use
document.activeElementto determine if the given element is focused.
const elementIsFocused = el => (el === document.activeElement);
elementIsFocused(el); // true if the element is focused