Is there a way to detect if a browser window is not currently active?

前端 未结 19 2044
无人共我
无人共我 2020-11-21 04:40

I have JavaScript that is doing activity periodically. When the user is not looking at the site (i.e., the window or tab does not have focus), it\'d be nice to not run.

相关标签:
19条回答
  • 2020-11-21 05:04

    this works for me on chrome 67, firefox 67,

    if(!document.hasFocus()) {
        // do stuff
    }
    
    0 讨论(0)
提交回复
热议问题