In jQuery, suppose you have an element of some kind that you're hiding and showing, using .hide(), .show() or .toggle(). How do you test to see if that element is currently hidden or visible on the screen?
|
2
|
|
||
|
|
|
|
You can use the "hidden" and "visible" selectors.
http://docs.jquery.com/Selectors/hidden
|
||
|
|
|
|
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 :
Here's how to do it without the 'if' :
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. |
||
|
|
|
|
Tsvetomir's solution worked for me, couldn't post a comment though. Expanding on it... if( $(element).is(":visible") == "true" ){ |
||||||||
|
|
|
As, the question refers to a single element, this code might be more suitable: $(element).is(":visible") Same as twernt suggestion, but applied to single element. |
||
|
|
|
|
$(element).css('display')=='none' The functions dont work with visibility attribute |
||
|
