Multiple parameters selection
Selecting elements using multiple parameters like here:
- $('descendant', 'ancestor').text();
seems to be way more popular than css-like syntax:
- $('ancestor descendant').text();
Do those two differ in performance, or is it just about being intuitive to particular people?