Files
30-seconds-of-code/snippets/element-is-focused.md
Angelos Chalaris 61200d90c4 Kebab file names
2023-04-27 21:58:35 +03:00

417 B

title, tags, author, cover, firstSeen, lastUpdated
title tags author cover firstSeen lastUpdated
Element is focused browser chalarangelo ice 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