jQuery select elements by range of negative indices
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Selecting the Elements by Range of Negative Indices in jQuery</title> <style> .highlight{// www .j ava 2 s . c om background: yellow; } </style> <script src="https://code.jquery.com/jquery-1.12.4.min.js"></script> <script> $(document).ready(function(){ $("ul li").slice(-2, -1).addClass("highlight"); }); </script> </head> <body> <h2>Unordered List</h2> <ul> <li>First list item</li> <li>Second list item</li> <li>Third list item</li> <li>Fourth list item</li> </ul> <hr> <h2>Another Unordered List</h2> <ul> <li>First list item</li> <li>Second list item</li> <li>Third list item</li> <li>Fourth list item</li> </ul> </body> </html>