Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In jQuery, it is possible to toggle the visibility of an element. You can use the functions .hide(), .show() or .toggle().

How you would test if an element has been hidden or shown using jQuery?

share|improve this question
120  
Thanks, I just learned about the toggle function. That's extremely helpful. – Rich Jan 23 '11 at 23:34
11  
I think this question should be protected. It is very useful! – Mosty Mostacho Mar 14 '12 at 3:02
9  
@Rich - One more...fadeToggle() – Sunil Apr 7 '12 at 19:53
9  
@Rich - one more slideToggle() – MotaBOS May 16 '12 at 12:46

17 Answers

up vote 2518 down vote accepted

As, the question refers to a single element, this code might be more suitable:

$(element).is(":visible") // Checks for display:[none|block], ignores visible:[true|false]

Same as twernt's suggestion, but applied to a single element.

share|improve this answer
22  
This solution would seem to encourage the confustion of visible=false and display:none; whereas Mote's solution clearly illistrates the coders intent to check the display:none; (via mention of hide and show which control display:none not visible=true) – kralco626 Dec 29 '10 at 18:30
11  
That is correct, but :visible will also check if the parent elements are visible, as chiborg pointed out. – Tsvetomir Tsonev Jan 6 '11 at 12:30
13  
You have a point - I'll make it clear that the code checks only for the display property. Given that the the original question is for show() and hide(), and they set display, my answer is correct. By the way it does work with IE7, here's a test snippet - jsfiddle.net/MWZss ; – Tsvetomir Tsonev Jan 14 '11 at 16:54
7  
I actually found that the reverse logic words better: !$('selector').is(':hidden'); for some reason. Worth a try. – Kzqai Jan 5 '12 at 15:36
1  
I never actually knew that there was such a :visible selector! I thought it was only :hidden. – think123 Apr 21 '12 at 23:41
show 8 more comments

You can use the hidden selector.

// Matches all elements that are hidden
$('element:hidden')

And the visible selector

// Matches all elements that are visible.
$('element:visible')
share|improve this answer
12  
just be careful, there are some good performance related tips in this presentation: addyosmani.com/jqprovenperformance – codecraig Jul 11 '11 at 17:05
4  
On pages 21 to 28 it shows how slow :hidden or :visible is compared to other selectors. Thanks for pointing this. – Etienne Dupuis Jul 4 '12 at 20:12
2  
When you're dealing with a couple of elements and very little is going on - i.e. THE ABSURDLY VAST MAJORITY OF CASES - the time issue is a ridiculously minor concern. Oh, noes! It took 42 ms instead of 19 ms!!! – vbullinger Feb 20 at 14:56
Although :hidden is slower than #id, this lead me to suspect :hidden checks the tag and all parents to see if they're hidden; actually it shortcuts by checking offsetHeight on just the one tag, which will be 0 if hidden. So not nearly as bad performance-wise as you might guess. – Chris Moschini Mar 27 at 23:05
$(element).css('display') == 'none'

Functions don't work with the visibility attribute.

share|improve this answer
I can't get this to work properly, but I'll bow out of this one. – Will Oct 7 '08 at 13:13
24  
This only checks for the display property of a single element. The :visible attribute checks also the visibility of the parent elements. – chiborg Mar 3 '10 at 10:10
this should have really been marked as a correct answer. – sarsnake Jan 11 '11 at 2:05
25  
@gnomixa No it should not. Consider if the element's parent has display:none; -- then the element is hidden, but this answer would falsely report that it is visible. Whereas the :visible and :hidden pseudo-classes correctly report that it is hidden. – Ricket Feb 24 '11 at 16:52
2  
This is the only solution that worked for me when testing with IE 8. – evanmcd Jan 13 '12 at 18:51

None of these answers address what I understand to be the question, which is what I was searching for, "how do I handle items that have visibility == hidden?". Neither :visible nor :hidden will handle this, as they are both looking for display per the documentation. As far as I could determine, there is no selector to handle CSS visibility. Here is how I resolved it (standard jQuery selectors, there may be a more condensed syntax):

$(".item").each(function() {
    if ($(this).css("visibility") == "hidden") {
        // handle non visible state
    } else {
        // handle visible state
    }
});
share|improve this answer
7  
This was the answer I was looking for when I came across this question via google. – Bob Nov 7 '11 at 22:47
2  
+1 for a useful answer to a different question about css visibility. The question was for jquery's show/hide functions, which use css display (which isn't apparent by just looking at the function names; I got it from other answers). It's also confusing that the answer to jquery's show/hide (display) is a jquery selector named "visible", which does not handle css "visible". – goodeye Dec 20 '12 at 3:19
This is the perfect answer. Should be accepted! – streetlight Feb 20 at 14:51
This answer is good to handle visibility literally, but the question was How you would test if an element has been hidden or shown using jQuery?. Using jQuery means: the display property. – MDeSchaepmeester May 11 at 22:37

From How do I determine the state of a toggled element? :


You can determine whether an element is collapsed or not by using the :visible and :hidden selectors.

var isVisible = $('#myDiv').is(':visible');
var isHidden = $('#myDiv').is(':hidden');

If you're simply acting on an element based on its visibility, just include ":visible" or ":hidden" in the selector expression. For example:

 $('#myDiv:visible').animate({left: '+=200px'}, 'slow');
share|improve this answer

If you already have a reference to a particular element and you want to perform some action on it only if it is visible, or only if it is hidden then you can do do the following. This basically allows you to do the following, but without the 'if' statement :

if ($(button).is(":visible")) {
     $(button).animate({ width: "toggle" });   // hide button
 }

Here's how to do it without the 'if' :

var button = $('#btnUpdate')[0];

if (weWantToHideTheButton) 
    {
        // hide button by sliding to left
        $(button).filter(":visible").animate({ width: "toggle" });
    }
    else {
        // show button by sliding to right
        $(button).filter(":hidden").animate({ width: "toggle" });
    }

This uses the same :visible or :hidden check, but acts on a specific element we already have previously selected (the variable button).

In this case I wanted to do this, but in only one line.

share|improve this answer
2  
No reason to extract the DOM node in the snippet used in the example, and then have to look it back up again. Better to just do: var $button = $('#btnUpdate'); And then in the If expressions just use $button instead of $(button). Has the advantage of caching the jQuery object. – LocalPCGuy Apr 21 '12 at 22:32
Excuse my terrible grammar :-/ – Simon_Weaver Sep 22 '12 at 22:35

It's worth mentioning (even after all this time), that $(element).is(":visible") works for jQuery 1.4.4, but not for jQuery 1.3.2, under Internet Explorer 8.

This can be tested using Tsvetomir Tsonev's helpful test snippet. Just remember to change the version of jQuery, to test under each one.

share|improve this answer
you'd better post this useful info as a comment to the answers that use .is(":visible") and not as an answer ;) – bluish Apr 7 '11 at 13:36
4  
@bluish It doesn't look like I have permissions to comment on answers, other than my own. – Reuben Apr 16 '11 at 15:45

The :visible selector according to the jQuery documentation:

  • They have a CSS display value of none.
  • They are form elements with type="hidden".
  • Their width and height are explicitly set to 0.
  • An ancestor element is hidden, so the element is not shown on the page.
  • Elements with visibility: hidden or opacity: 0 are considered to be visible, since they still consume space in the layout.

This is useful in some cases and useless in others, because if you want to check if the element is visible (display != none), ignoring the parents visibility, you will find that doing .css("display") == 'none' is not only faster, but will also return the visibility check correctly.

If you want to check visibility instead of display, you should use: .css("visibility") == "hidden".

Also take into consideration the additional jQuery notes:

Because :visible is a jQuery extension and not part of the CSS specification, queries using :visible cannot take advantage of the performance boost provided by the native DOM querySelectorAll() method. To achieve the best performance when using :visible to select elements, first select the elements using a pure CSS selector, then use .filter(":visible").

Also, if you are concerned about performance, you should check Now you see me… show/hide performance (2010-05-04). And use other methods to show and hide elements.

share|improve this answer

This works for me, and I am using show() and hide() to make my div hidden/visible

if( $(this).css("display") == 'none' ){

    /* your code here*/
}
else{

    /*  alternate logic   */
}
share|improve this answer

An element could be hidden with "display:none", "visibility:hidden" or "opacity:0". The difference between those methods:

  • display:none hides the element, and it does not take up any space;
  • visibility:hidden hides the element, but it still takes up space in the layout;
  • opacity:0 hides the element as "visibility:hidden", and it still takes up space in the layout; the only difference is that opacity lets one to make an element partly transparent;

How element visibility and jQuery works;

if ($('.target').is(':hidden')) {
    $('.target').show();
} else {
    $('.target').hide();
}

if ($('.target').is(':visible')) {
    $('.target').hide();
} else {
    $('.target').show();
}

if ($('.target-visibility').css('visibility') == 'hidden'){
    $('.target-visibility').css({visibility: "visible", display: ""});
}else{
    $('.target-visibility').css({visibility: "hidden", display: ""});
}

if ($('.target-visibility').css('opacity') == "0"){
    $('.target-visibility').css({opacity: "1", display: ""});
}else{
    $('.target-visibility').css({opacity: "0", display: ""});
}

Useful jQuery toggle methods:

$('.click').click(function() {
    $('.target').toggle();
});

$('.click').click(function() {
    $('.target').slideToggle();
});

$('.click').click(function() {
    $('.target').fadeToggle();
});
share|improve this answer
2  
Another difference between visibility:hidden and opacity:0 is that the element will still respond to events (like clicks) with opacity:0. I learned that trick making a custom button for file uploads. – Perro Azul Jun 29 '12 at 18:15

I use CSS class .hide { display: none!important; }.

For hiding/showing, I call .addClass("hide")/.removeClass("hide"). For checking visibility, I use .hasClass("hide").

It's a simple and clear way to check/hide/show elements, if you don't plan to use .toggle() or .animate() methods.

share|improve this answer
.hasClass('hide') doesn't check if an ancestor of the parent is hidden (which would make it hidden too). You could possibly get this to work correctly by checking if .closest('.hide').length > 0, but why reinvent the wheel? – nbrooks Sep 25 '12 at 23:57
Variant you propose returns if element visible on html, my variant returns if element was directly hidden by your javascript code/view engine. If your know that parent elements should never be hidden - use .hasClass() to be more strict and prevent future bugs. If you want to check not only visibility but element state set too - use .hasClass() too. In other cases .closest() is better. – Evgeny Levin Dec 1 '12 at 20:27

You can also do this using straight JavaScript:

function isRendered(domObj) {
    if ((domObj.nodeType != 1) || (domObj == document.body)) {
        return true;
    }
    if (domObj.currentStyle && domObj.currentStyle["display"] != "none" && domObj.currentStyle["visibility"] != "hidden") {
        return isRendered(domObj.parentNode);
    } else if (window.getComputedStyle) {
        var cs = document.defaultView.getComputedStyle(domObj, null);
        if (cs.getPropertyValue("display") != "none" && cs.getPropertyValue("visibility") != "hidden") {
            return isRendered(domObj.parentNode);
        }
    }
    return false;
}

Notes:

  1. Works everywhere

  2. Works for nested elements

  3. Works for CSS and inline styles

  4. Doesn't require a framework

share|improve this answer
1  
Works slightly differently to jQuery's; it considers visibility: hidden to be visible. – alex Sep 20 '12 at 4:45
It's easy enough to change the code above to mimic the (arguably stupid) jQuery behavior. . . . . function isRendered(o){if((o.nodeType!=1)||(o==document.body)){return true;}if(o.currentStyle&&o.currentStyle["display"]!="none"){return isRendered(o.parentNode);}else if(window.getComputedStyle){if(document.defaultView.getComputedStyle(o, null).getPropertyValue("display")!="none"){return isRendered(o.parentNode);}}return false;} – Matt Brock Sep 26 '12 at 13:57
Sure, I was just adding that for the benefit of users who used this without scanning its code. :) – alex Sep 26 '12 at 21:33

This may work:

expect($("#message_div").css("display")).toBe("none");
share|improve this answer
What language/dialect/library is this? I'm not familiar with this syntax in JS... – nbrooks Sep 25 '12 at 23:31
1  
@nbrooks this is jasmine a bdd framework. the snippet here is for use in a test. – BinaryNights Oct 22 '12 at 9:16
@kinjal Thanks for the info! – nbrooks Oct 23 '12 at 15:53

ebdiv should be set to style="display:none;". It is works for show and hide:

$(document).ready(function(){
    $("#eb").click(function(){
        $("#ebdiv").toggle();
    });    
});
share|improve this answer

Another answer you should put into consideration is if you are hiding an element, you should use jQuery, but instead of actually hiding it, you remove the whole element, but you copy its HTML content and the tag itself into a jQuery variable, and then all you need to do is test if there is such a tag on the screen, using the normal if (!$('#thetagname').length).

share|improve this answer
2  
You can't rely on implicit truthiness here; all JS objects (excepting null) are truthy, even empty ones such as { }. if ($('#thetagname')) will always pass, because $ returns a jQuery object, which the JS engine interprets as true. The shortest way to express that idea would be if ( !$('#thetagname').length ), but this is obviously not very clear... – nbrooks Sep 25 '12 at 23:41
@nbrooks How's this? – think123 Mar 26 at 22:12

One can simply use the hidden or visible attribute, like:

$('element:hidden')
$('element:visible')

Or you can simplify the same with is as follows.

$(element).is(":visible")
share|improve this answer

HTML

<div id="clickme">
 Click here
</div>
<img id="book" src="http://www.chromefusion.com/wp-content/uploads/2012/06/chrome-logo.jpg" alt="" />

jQuery

<script>

$('#clickme').click(function() {
$('#book').toggle('slow', function() {
    // Animation complete.
     alert( $('#book').is(":visible"));//<--- TRUE if Visible False if Hidden
   });
});

</script>

Source & DEMO : http://bloggerplugnplay.blogspot.in/2013/01/how-to-see-if-element-is-hidden-or.html

share|improve this answer
1  
Not sure what this adds to the already existing answers... except a link to a blog you are linking a good bit lately. – Andrew Barber Jan 25 at 5:47
@Adrew but this link is showing working example of this function. I think a practical answer may weight over a full page of text :) – DextOr Jan 25 at 6:30

protected by minitech Apr 13 '12 at 3:09

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.