Before I call:
$('myObject').show();
I want to know if it is currently hidden or visible.
|
Before I call:
I want to know if it is currently hidden or visible. |
|||
|
|
|
You can test this with the css() function:
EDIT: Wasn't aware of how cool the :hidden selector is. My suggestion is still useful for testing other attributes, but Alex's suggestion is nicer in this case. |
|||||||||
|
|
There's 2 ways to do it, that I know of:
or
They should both work. You can also do something like this:
Which will only call .show() if the item is already hidden, or only call .hide() if the item is already visible. |
||||
|
|
|
You could also use the Toggle |
|||
|
|
From jQuery FAQ:
|
|||
|
|