jQuery: "Nested" visibility -
I have multiple & lt; Cube & gt; There is a table with elements at some given time, some & lt; Tbody & gt; Elements appear and some are hidden, and I only have to select the visible people.
I see jQuery's : visible selector.
The problem now is that I need to do that task before the table is hidden when it is hidden, and then : visible selector does not work
Thank you.
/ P>
You can call .filter :
$ ('tabs'). Filter (function () {return $ (this). Css ('display')! == 'none';})
Comments
Post a Comment