Filter by combined conditions

Description

The following code shows how to filter by combined conditions.

Example


<html>
<head>
<script
  src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type='text/javascript'>
  $(document).ready(function() {<!--from   www.  ja v a  2s  .  c o m-->
    $('li').filter(function() {
      return $(this).hasClass('my2') || $(this).hasClass('my3');
    }).addClass('mySelected');
  });
</script>
<style type='text/css'>
ul {
  list-style: none;
  margin: 5px;
  padding: 0;
}

li.mySelected {
  background: #a1e6b2;
  border: 4px solid #93daa4;
}
</style>
</head>
<body>
  <ul>
    <li class='my3'>A</li>
    <li class='my2'>B</li>
    <li class='my3'>C</li>
    <li class='my2'>D</li>
    <li class='my'>E</li>
  </ul>
</body>
</html>

Click to view the demo





















Home »
  jQuery »
    jQuery Example »




Animation
DOM
Event
Form
List
Select
Style
Table
Utilities