Get LI one by one : UL LI « jQuery « JavaScript DHTML






Get LI one by one

     
<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
           var mappedItems = $("li").map(function (index) {
              var replacement = $("<li>").text($(this).text()).get(0);
              $(replacement).text($(replacement).text().toUpperCase());
              return replacement;
           });
           $("#results").append(mappedItems);
        });
    </script>
  </head>
  <body>
    <body>
      <ul>
        <li>asdf</li>
        <li>asdf</li>
        <li>asdf</li>
      </ul>
      <ul id="results">
      </ul>
  </body>
</html>

   
    
    
    
    
  








Related examples in the same category

1.To add a special style to list item that are being hovered over
2.Click to toggle highlight on the list item.
3.Finds the second li in each matched ul and notes it.
4.Add style to li under a UL with certain id
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