I\'m not sure whether to use :first or :eq(0) in a selector. I\'m pretty sure that they\'ll always return the same object, but is one speedier than the other?
I\'m
According to jQuery's source code, .first() is just a convenience wrapper for .eq(0):
.eq(0)
first: function() { return this.eq( 0 ); },