Home >Web Front-end >JS Tutorial >How to Iterate Through Elements in Reverse Order with jQuery\'s .each()?
In situations where you need to traverse elements in the reverse order in the DOM, JQuery's default .each() function may not suffice. Consider the following HTML:
<ul> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> <li>Item 4</li> <li>Item 5</li> </ul>
To select all the li elements and iterate them backward, we can use the following approach:
$.($("li").get().reverse()).each(function() { /* ... */ });
Here's how it works:
The above is the detailed content of How to Iterate Through Elements in Reverse Order with jQuery\'s .each()?. For more information, please follow other related articles on the PHP Chinese website!