Select only child

Description

The following code shows how to select with Only child (:only-child) selector.

Example


<html>
<head>
<script
  src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js">
</script><!--   www .  ja v  a 2s  .  c  o m-->
<script type="text/javascript">
  $(document).ready(
      function() {
        $("div ul:only-child").text("only has ul").css("border",
            "2px blue solid");
      });
</script>
</head>
<body>
  <div>
    <ul>
      <li>A</li>
      <li>B</li>
      <li>C</li>
    </ul>
  </div>
  <div>
    <ul>
      <li>D</li>
      <li>E</li>
      <li>F</li>
      <li>G</li>

    </ul>
  </div>
  <div>
    <ul>
      <li>H</li>
      <li>I</li>
      <li>J</li>
      <li>K</li>
    </ul>
  </div>

</body>
</html>

Click to view the demo





















Home »
  jQuery »
    jQuery Example »




Animation
DOM
Event
Form
List
Select
Style
Table
Utilities