jQuery last() Method
Definition and Usage
The last() method returns the last element of the selected elements.
Tip: To return the first element, use the first() method.
Syntax
$(selector).last()
Try it Yourself - Examples
Select
the last <span> element in a set of <p> elements
How to select the last <span> element in a set of <p> elements.