jQuery :last Selector


The :last selector in jQuery is used to select the last element.

Syntax

The syntax is as follows −

$(":last")

Example

Let us now see an example to implement the jQuery :last Selector −

<!DOCTYPE html>
<html>
<head>
<style>
   .one {
      color: black;
      background-color: orange;
      font-size: 16px;
      border: 2px blue solid;
   }
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
   $(document).ready(function(){
      $("p:last").addClass("one");
   });
</script>
</head>
<body>
<h1>Examination Details</h1>
<p>Date: 25th October 2019</p>
<p>Timings: 10AM TO 1PM</p>
<p>All the best for exams!</p>
</body>
</html>

Output

This will produce the following output −

Updated on: 05-Nov-2019

110 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements