x
 
1
<!DOCTYPE html>
2
<title>My Example</title>
3
4
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
5
<script>
6
  $( function() {
7
    $( "button" ).click( function() {
8
      $( "li" ).not( ":odd" ).fadeOut( "slow" );
9
    });
10
  });
11
</script>
12
13
<button>Fade out the even list items (i.e. the "non-odd" ones)</button>
14
15
<ul>
16
  <li>Apples</li>
17
  <li>Oranges</li>
18
  <li>Papaya</li>
19
  <li>Lychee</li>
20
  <li>Rambutan</li>
21
  <li>Passionfruit</li>
22
  <li>Mango</li>
23
</ul>
24
<p>Even ones start at the first list item (zero-based indexing).</p>