I have a selector, "td > a.leftmenuitem:last, div > a.leftmenuitem:last", and I'd like to simplify it a little. I've tried "* > a.leftmenuitem:last", "td, div > a.leftmenuitem:last", and "(td, div) > a.leftmenuitem:last", none of which work the way the first selector does. Is this kind of thing just not possible in the selector syntax without making a separate selector for each?
| |||
|
feedback
|
|
You can't simplify:
without there being something in common so you can select all relevant td and div elements with one expression. For example if they both had class blah you could do:
But do not use this kind of expression if you can avoid it. Class selectors are slow (compared to ID and tag selectors). Is there something wrong with just?
? By the way, are you certain | |||
feedback
|
|
What is bigger, sometimes is faster. When you use * instead of td, your query is much slower. | |||
|
feedback
|
|
I don't think you can simplify it. I'd instead opt towards giving the links you're interested in a unique class, so that you can simply do | |||
|
feedback
|
|
Your selector is simple enough. If you wanted to simplify it, you could do something like:
I doubt this would result in faster execution times, however. | |||
|
feedback
|
|
Maybe I'm just confused, but if
would work for you, then why not go with
instead? | |||
|
feedback
|
|
The selector you're using is
match all child elements specified by
Am I missing something? | |||
|
feedback
|