Below JQuery samples will show you, how to find out hidden DOM element.
// Checks for display:[none|block], ignores visible:[true|false]
$(DOMElement).is(":visible")
//some more complete information
$(".item").each(function() {
if ($(this).css("visibility") == "hidden") {
// handle non visible state
} else {
// handle visible state
}
});
var isHidden = $('DOMElement').is(':hidden');
// Matches all elements that are hidden
$('DOMElement:hidden')
// Matches all elements that are visible.
$('DOMElement:visible')
//Functions don't work with the visibility attribute.
$(DOMElement).css('display') == 'none'
// Checks for display:[none|block], ignores visible:[true|false]
$(DOMElement).is(":visible")
//some more complete information
$(".item").each(function() {
if ($(this).css("visibility") == "hidden") {
// handle non visible state
} else {
// handle visible state
}
});
var isHidden = $('DOMElement').is(':hidden');
// Matches all elements that are hidden
$('DOMElement:hidden')
// Matches all elements that are visible.
$('DOMElement:visible')
//Functions don't work with the visibility attribute.
$(DOMElement).css('display') == 'none'
Post a Comment