“Se o BrowSertab for ativo jQuery” Respostas de código

Se o BrowSertab for ativo jQuery

document.addEventListener('visibilitychange', function() {
	if(document.hidden)
		console.log('Page is hidden from user view');
	else
		console.log('Page is in user view');
});
Bad Bear

JavaScript Detect se a guia do navegador está ativa

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

$(window).blur(function() {
    clearInterval(interval_id);
    interval_id = 0;
});
Prickly Pony

Respostas semelhantes a “Se o BrowSertab for ativo jQuery”

Perguntas semelhantes a “Se o BrowSertab for ativo jQuery”

Mais respostas relacionadas para “Se o BrowSertab for ativo jQuery” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código