Select div element who has no h1 has child - Javascript jQuery Selector

Javascript examples for jQuery Selector:has

Description

Select div element who has no h1 has child

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("div:not(:has(h1))").css("background-color", "yellow");
});/*from www.  jav  a 2 s  .c  o m*/
</script>
</head>
<body>

<div>
  <h1>This is a heading (h1)</h1>
  <p>This is a paragraph.</p>

    <div>
      <h1>This is a heading (h1)</h1>
      <p>This is a paragraph.</p>

        <div>
          <h1>This is a heading (h1)</h1>
          <p>This is a paragraph.</p>
        </div>

    </div>

</div>

<div>
  <h2>This is a heading (h2)</h2>
  <p>This is a paragraph.</p>
</div>

<div>
  <h3>This is a heading (h3)</h3>
  <p>This is a paragraph.</p>
</div>

</body>
</html>

Related Tutorials