Click to select or unselect li item : UL LI « jQuery « JavaScript DHTML






Click to select or unselect li item

 


<html>
  <head>
    <script type='text/javascript' src='js/jquery-1.3.2.js'></script>
    <script type='text/javascript'>
$.fn.extend({
  Select: function() {
    return $(this).addClass('mySelected');
  },
  Unselect: function() {
    return $(this).removeClass('mySelected');
  },
  MyApplication: {
    Ready: function() {
      $('p').click(
        function($e) {
          $('li').Select();
        }
      );
      $('li').click(
        function() {
          $(this).hasClass('mySelected')?$(this).Unselect() : $(this).Select();   
        }
      );
    }
  }
});

$(document).ready(
  function() {
    $.fn.MyApplication.Ready();
  }
);
    </script>
    <style type='text/css'>
li.mySelected {
    background: yellow;
}
    </style>
  </head>
  <body>
    <ul>
      <li>A</li>
      <li>B</li>
      <li>C</li>
      <li>D</li>
      <li>E</li>
      <li>F</li>
    </ul>
    <p>
      Select All
    </p>
  </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.Get parent for LI
12.All li under ul but not a class name