Skip to content

Instantly share code, notes, and snippets.

@thangman22
Created April 17, 2017 04:18
Show Gist options
  • Save thangman22/3a00c5f0453177c806135f7f275ca969 to your computer and use it in GitHub Desktop.
Save thangman22/3a00c5f0453177c806135f7f275ca969 to your computer and use it in GitHub Desktop.
let documentIsHidden = false;
document.addEventListener('visibilitychange', () => {
// เช็คว่า หน้านี้ถูกซ่อนหรือเปิดอยู่ ตอนที่มี event visibilitychange trigger มา
documentIsHidden = document.hidden;
});
function update() {
if (!documentIsHidden) {
// Request server หรือ update ตามปกติถ้าเว็บเปิดอยู่
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment