Files
30-seconds-of-code/javascript/snippets/is-browser-tab-focused.md
2023-05-01 22:35:56 +03:00

501 B

title, type, tags, cover, dateModified
title type tags cover dateModified
Check if browser tab is focused snippet
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