:last-of-type Selector - Javascript jQuery Selector

Javascript examples for jQuery Selector:last-of-type

Description

The :last-of-type selector selects elements who are the last child in a particular type from their parent.

This is the same as :nth-last-of-type(1).

The following code shows how to select every <p> element that is the last <p> element of its parent:

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(){
    $("button").click(function(){
        var btn = $(this).text();
        $("p").css("background-color", "white");
        $("p" + btn).css("background-color", "yellow");
    });/*from w  ww . j  a va 2  s.  com*/
});
</script>
</head>
<body>

<button>:last</button>
<button>:last-child</button>
<button>:last-of-type</button><br>

<p>A</p>

<div style="border:1px solid;">
  <p>B</p>
  <p>C</p>
</div><br>

<div style="border:1px solid;">
  <span>D</span>
  <p>E</p>
  <p>F</p>
  <span>G</span>
</div><br>

<div style="border:1px solid">
  <p>H</p>
  <p>I</p>
</div>

<p>The last paragraph in body, and the last child in div.</p>

</body>
</html>

Related Tutorials