I'm trying to find all the parent elements that have the CSS style display:none. I can't seem to get it to work though. Here's what I've got:
var $parents = $(...).parents("[css=display:none]");
|
I'm trying to find all the parent elements that have the CSS style
| ||||
|
feedback
|
|
If you want the ones that are actually
This gets the parents, then filters them to get only the ones that are | |||
|
feedback
|
|
@Nick's solution is a very simple and straightforward method of achieving your goal. It's also probably the best performing method. However, for the sake of completeness and convenience (if you're doing this a lot), it's also possible to create your own selector:
Example - http://jsfiddle.net/V8CQr/. See more information on creating custom selectors at: http://www.jameswiseman.com/blog/2010/04/19/creating-a-jquery-custom-selector/ | |||
|
feedback
|