Files
30-seconds-of-code/snippets/element-is-focused.md
2023-04-28 22:29:23 +03:00

397 B

title, type, tags, author, cover, dateModified
title type tags author cover dateModified
Element is focused snippet
browser
chalarangelo ice 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