jQuery .last()
Learn all about the jQuery function .last().
Given a jQuery object that represents a set of DOM elements, the .last()
method constructs a new jQuery object from the last element in that set.
Consider a page with a simple list on it:
1
2
3
4
5
6
7
|
|
We can apply this method to the set of list items:
1
|
|
The result of this call is a red background for the final item.