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.
feedback
|
Note the asterisk '*' at the beginning of the selector matches all elements. See the Attribute Contains Selectors, as well as the :visible and :hidden selectors. | ||||
|
feedback
|
|
This selects all DIVs with an ID containing 'foo' and that are visible
| |||||||
feedback
|
|
Thanks to both of you. This worked perfectly for me.
| |||
|
feedback
|