Answers for "javascript detect if the browser tab is active"

-1

javascript detect if the browser tab is active

var interval_id;
$(window).focus(function() {
    if (!interval_id)
        interval_id = setInterval(hard_work, 1000);
});

$(window).blur(function() {
    clearInterval(interval_id);
    interval_id = 0;
});
Posted by: Guest on April-29-2020

Code answers related to "javascript detect if the browser tab is active"

Code answers related to "Javascript"

Browse Popular Code Answers by Language