Inspired by http://stackoverflow.com/questions/3814966/help-understanding-jquery-attribute-equals-selector the question is:
Which of these is more efficient?
$('#FOO element.BAR[attr=BAZ]')
or
$('#FOO element[attr=BAZ].BAR')
And yes, we could omit the initial #FOO selector, but that question was asking about that in particular, so ... sobeit
Also, while my syntax above uses jQuery, that's just because it was convenient for me to leave it so. The same syntax would be found in a CSS document, no? apparently that isn't the same, let's limit it to jQuery then?