HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> </head> <body> <h1>jQuery :nth-last-of-type() Selector</h1> <p>This is paragraph1</p> <p>This is paragraph2</p> <script> $(document).ready(function(){ $("p:nth-last-of-type(1)").css("color","green"); }); </script> </body> </html>
OUTPUT
×

Save as Private