I have had this feeling that $('.class:first') runs faster than $('.class'). So anytime I know there only is one .class in the subset, I've used it.
Does :first make the query run faster, or is it unnecessary?
|
I have had this feeling that Does |
|||
|
It actually depends on the browser, Any of these would actually be faster:
...since they run native code then just take the first entry in that set. |
|||||||
|
|
If anything, parsing and then running the filter on the
That way you can limit the scope of the search to |
|||
|
|
.classelement, it should make no difference. (more likely to perform worse, in the sense that it must do an additional selection instead of just returning everything) – Gaby aka G. Petrioli Dec 10 '10 at 10:26