397 B
397 B
title, type, tags, author, cover, dateModified
| title | type | tags | author | cover | dateModified | |
|---|---|---|---|---|---|---|
| Element is focused | snippet |
|
chalarangelo | ice | 2020-10-19T18:51:03+03:00 |
Checks if the given element is focused.
- Use
Document.activeElementto determine if the given element is focused.
const elementIsFocused = el => (el === document.activeElement);
elementIsFocused(el); // true if the element is focused