Select by child elements

Description

The following code shows how to select by child elements.

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() {<!--  w  ww  . jav a 2s  .co m-->

    $("tr:has(td)").css("color", "red");
  });
</script>

</head>
<body>
  <table>
    <tr>
      <td>First</td>
    </tr>
    <tr>
      <td>java2s.com</td>
    </tr>
    <tr>
      <td>java2s.com</td>
    </tr>
  </table>


</body>
</html>

Click to view the demo





















Home »
  jQuery »
    jQuery Example »




Animation
DOM
Event
Form
List
Select
Style
Table
Utilities