Files
30-seconds-of-code/snippets/elementIsFocused.md
2020-09-15 21:52:00 +03:00

17 lines
347 B
Markdown

---
title: elementIsFocused
tags: browser,intermediate
---
Returns `true` if the given element is focused, `false` otherwise.
- Use `document.activeElement` to determine if the given element is focused.
```js
const elementIsFocused = el => (el === document.activeElement);
```
```js
elementIsFocused(el); // true if the element is focused
```