“Как обнаружить раздел, видно в jQuery” Ответ

jQuery Посмотрите, виден ли элемент

.is(':visible')
//Selects all elements that are visible.

if($('#yourDiv').is(':visible')){
	//do stuff in here
}
//or
$('#yourDiv:visible').callYourFunction();
Carnivorous Flamingo

Проверьте, виден ли элемент

.is(':visible')
//Selects all elements that are visible.

if($('#Div').is(':visible')){
	// add whatever code you want to run here.
}

$('#yourDiv:visible').callYourFunction();
Batman

jQuery, если видно

$('.eipC:visible').length 

//or

$('.eipC').is(':visible').length
Strange Shrew

Как обнаружить раздел, видно в jQuery

$.fn.isInViewport = function() {var elementTop = $(this).offset().top;var elementBottom = elementTop + $(this).outerHeight();var viewportTop = $(window).scrollTop();var viewportBottom = viewportTop + $(window).height();return elementBottom > viewportTop && elementTop < viewportBottom;};
Drab Dugong

Ответы похожие на “Как обнаружить раздел, видно в jQuery”

Вопросы похожие на “Как обнаружить раздел, видно в jQuery”

Больше похожих ответов на “Как обнаружить раздел, видно в jQuery” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования