Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In jquery, there are .hide() and .show() methods which sets the CSS display: none setting. Is there an equivalent function which would set the visibility: hidden setting? I know I can use .css() but I prefer some function like .hide() or so. Thanks.

share|improve this question
You can implement your own based on .toggle() – zerkms Mar 8 '12 at 8:19

4 Answers

up vote 52 down vote accepted

You could make your own plugins.

jQuery.fn.visible = function() {
    return this.css('visibility', 'visible');
}

jQuery.fn.invisible = function() {
    return this.css('visibility', 'hidden');
}

jQuery.fn.visibilityToggle = function() {
    return this.css('visibility', function(i, visibility) {
        return (visibility == 'visible') ? 'hidden' : 'visible';
    });
}

If you want to overload the original jQuery toggle(), which I don't recommend...

!(function($) {
    var toggle = $.fn.toggle;
    $.fn.toggle = function() {
        var args = $.makeArray(arguments),
            lastArg = args.pop();

        if (lastArg == 'visibility') {
            return this.visibilityToggle();
        }

        return toggle.apply(this, arguments);
    };
})(jQuery);

jsFiddle.

share|improve this answer
Alex, thanks. Could you use .toggle() function instead? – Tomas Mar 8 '12 at 8:47
@Tomas You'd have to shadow toggle() which could break other scripts. If you wanted, you could add an extra argument to toggle() to specify whether visibility or display should be toggled. I'd just use the custom one in my last example, however. :) – alex Mar 8 '12 at 8:49
Could you post an example on how to support additional parameters of show (speed, easing, callback)? – thg435 Mar 8 '12 at 8:57
@thg435 I provided an example of overloading an existing jQuery method. You should be able to adapt the example to what you desire. – alex Mar 8 '12 at 9:51
2  
It's superflous if you look at it that way, but there is a purpose. If this is concatenated to another script with a (function() { })() or similar, ASI won't kick in because it looks like a function invocation. Try this, then remove the !. – alex Mar 9 '12 at 11:21
show 3 more comments

There isn't one built in but you could write your own quite easily:

(function($) {
    $.fn.invisible = function() {
        return this.each(function() {
            $(this).css("visibility", "hidden");
        });
    };
    $.fn.visible = function() {
        return this.each(function() {
            $(this).css("visibility", "visible");
        });
    };
}(jQuery));

You can then call this like so:

$("#someElem").invisible();
$("#someOther").visible();

Here's a working example.

share|improve this answer
6  
+1 You don't need .each: jsfiddle.net/nGhjQ/2. – pimvdb Mar 8 '12 at 8:28
Good point, just a force of habit. Thanks. +1 to alex's answer! – James Allardice Mar 8 '12 at 8:29
Just curious, what's the point in wrapping these two functions in the (function($) {...}(jQuery)); wrapper? I've never defined my own functions in jQuery before, I have always just defined functions in straight JavaScript. – VoidKing May 14 at 13:24
@VoidKing - It's just the "best practice" for jQuery plugins as per the docs. It allows you to use the $ identifier inside the function, even if it refers to something else in the parent scope. – James Allardice May 14 at 13:32

If you only need the standard functionality of hide only with visibility:hidden to keep the current layout you can use the callback function of hide to alter the css in the tag. Hide docs in jquery

An example :

$('#subs_selection_box').fadeOut('slow', function() {
      $(this).css({"visibility":"hidden"});
      $(this).css({"display":"block"});
});

This will use the normal cool animation to hide the div, but after the animation finish you set the visibility to hidden and display to block.

An example : http://jsfiddle.net/bTkKG/1/

I know you didnt want the $("#aa").css() solution, but you did not specify if it was because using only the css() method you lose the animation.

share|improve this answer

An even simpler way to do this is to use jQuery's toggleClass() method

CSS

.newClass{visibility: hidden}

HTML

<a href="#" class=trigger>Trigger Element </a>
<div class="hidden_element">Some Content</div>

JS

$(document).ready(function(){
$(".trigger").click(function(){
$(".hidden_element").toggleClass("newClass");
});
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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