Add style to li under a UL with certain id : UL LI « jQuery « JavaScript DHTML






Add style to li under a UL with certain id

 


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

$(document).ready(tmpExample.ready);
    </script>
    <style type='text/css'>
ul#myStyle {
    list-style: none;
    margin: 0;
    padding: 0;
}
ul#myStyle li {
    margin: 1px;
    padding: 3px;
}

li.tmpFound {
    background: red;
}
    </style>
  </head>
  <body>
  <body>
    <ul id='myStyle'>
        <li><a href='http://www.java2s.com'>java2s</a></li>
        <li><a href='http://www.apple.com'>Apple</a></li>
        <li><a href='http://www.jquery.com'>jQuery</a></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.Select Li by class style name nested ul with id
6.Add class to next li
7.Add class to previous li
8.All from next 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