Get parent for LI : UL LI « jQuery « JavaScript DHTML






Get parent for LI

 

<html>
  <head>
    <script type='text/javascript' src='js/jquery-1.3.2.js'></script>
    <script type='text/javascript'>
var myDemo = {
  ready : function() {
    $('li.liClassName3').parents('div#uiIDWrapper').addClass('tmpParent');
  }
};

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

ul#uiID {
    list-style: none;
    margin: 0;
    padding: 0;
}
ul#uiID li {
    margin: 1px;
    padding: 3px;
}
div#uiIDWrapper {
    padding: 5px;
    border: 1px solid rgb(200, 200, 200);    
    background: rgb(240, 240, 240);
}
body#myDemo div.tmpParent {
    background: rgb(174, 211, 248);
}
    </style>
  </head>
  <body id='myDemo'>
    
    <div id='uiIDWrapper'>
      <ul id='uiID'>
        <li>A</li>
        <li class='liClassName'>B</li>
        <li class='liClassName'>C</li>
        <li>D</li>
        <li class='liClassName2'>E</li>
        <li>F</li>
        <li class='liClassName3'>G</li>
      </ul>
    </div>
  </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 from next li
10.All previous from a LI tag
11.All li under ul but not a class name
12.Click to select or unselect li item