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.
You could make your own plugins.
If you want to overload the original jQuery
toggle(), which I don’t recommend…jsFiddle.