I've come into the habit of altering my jQuery queries to hopefully optimise them to run faster. For example, if I wanted to get the html of the first "a" element...
// i'd use this:
$("a:first").html()
// instead of this, which is functionally identical
$("a").html()
It makes sense right? Don't bother getting all the elements, just stop at the first [...]