I'm trying to find all elements on a page whose element id contains a certain text. I'll then need to filter the found elements based on whether they are hidden or not. Any help is greatly appreciated
|
|
thank u both it perfectly i'm looking for too..thanks a lot |
||
|
|
|
|
Thanks to both of you. This worked perfectly for me.
|
||
|
|
|
|
This selects all DIVs with an ID containing 'foo' and that are visible
|
||||||
|
|
|
Note the asterisk '*' at the beginning of the selector matches all elements. See attributeContains: http://docs.jquery.com/Selectors/attributeContains#attributevalue Also see the :hidden and :visible filters: |
|||
|
|
