Files
30-seconds-of-code/snippets/elementIsFocused.md
2022-03-22 12:58:05 +02:00

426 B

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