JSFiddle - React, Tailwind, and code Playground

by kboucher

HTML

<article class="post">
    <p>Some text.</p>
    <p>
        <a href="#"><img src="http://dummyimage.com/200x100/000/fff"></a>
        <a href="#"><img src="http://dummyimage.com/200x100/000/fff"></a>
        <a href="#"><img src="http://dummyimage.com/200x100/000/fff"></a> <!-- TARGET ME (LAST) -->
    </p>
    <p>Some text. Some more text <a href="#">with link</a></p>
    <p>
        <a href="#"><img src="http://dummyimage.com/200x100/000/fff"></a>  <!-- TARGET ME (LAST) -->
    </p>
    <p>Some text. Some more text <a href="#">with link</a></p>
</article>

JavaScript

$(document).ready( function() {
    var $lastLinks = $( "article.post p a:last-child img" );
    alert( $lastLinks.length );
});