All from next li : UL LI « jQuery « JavaScript DHTML






All from next li

 


<html>
  <head>
    <script type='text/javascript' src='js/jquery-1.3.2.js'></script>
    <script type='text/javascript'>
var tmpExample = {
  ready : function() {
    $('li#liID').nextAll().addClass('mySiblings');
  }
};

$(document).ready(tmpExample.ready);
    </script>
    <style type='text/css'>

ul#uiID {
    list-style: none;
    margin: 0;
    padding: 0;
}
ul#uiID li {
    margin: 1px;
    padding: 3px;
}
li.mySiblings {
    background: #165b91;
    color: white;
}
    </style>
  </head>
  <body>
    <ul id='uiID'>
      <li>Red</li>
      <li>Blue</li>
      <li>Green</li>
      <li id='liID'>Yellow</li>
      <li>Orange</li>
      <li>Purple</li>
    </ul>
  </body>
</html>

   
  








Related examples in the same category

1.Get LI one by one
2.To add a special style to list item that are being hovered over
3.Click to toggle highlight on the list item.
4.Finds the second li in each matched ul and notes it.
5.Add style to li under a UL with certain id
6.Select Li by class style name nested ul with id
7.Add class to next li
8.Add class to previous li
9.All previous from a LI tag
10.Get parent for LI
11.All li under ul but not a class name
12.Click to select or unselect li item