Files
30-seconds-of-code/snippets/js/s/is-browser-tab-focused.md
2023-05-07 16:07:29 +03:00

522 B

title, type, language, tags, cover, dateModified
title type language tags cover dateModified
Check if browser tab is focused snippet javascript
browser
overgrown 2020-10-20T23:02:01+03:00

Checks if the browser tab of the page is focused.

  • Use the Document.hidden property, introduced by the Page Visibility API to check if the browser tab of the page is visible or hidden.
const isBrowserTabFocused = () => !document.hidden;
isBrowserTabFocused(); // true