I want to simplify my selector from:
'#a #b a[href^=mailto], .c .d a[href^=mailto]'
To:
':matches(#a #b, .c .d) a[href^=mailto]'
Is this possible just using jQuery selectors? Or do I have to do this:
$('#a #b, .c .d').find('a[href^=mailto]')
Which isn't as flexible.