Reduce the set of matched elements to the first in the set.
// <li>A</li><li>B</li> $('li').first().addClass('first-item');
<li class="first-item">A</li> <li>B</li>
Equivalent to .eq(0).
.eq(0)
Returns: A new SR object.
SR