JSFiddle - React, Tailwind, and code Playground

by Ketan Patel

HTML

<a href="https://www.investright.org/wp-content/uploads/2018/10/Investor-Readiness-For-Better-Investing-Part-4.pdf" target="_blank" rel="noopener">investor study</a>

<a href="https://google.com" >Second link</a>

JavaScript

$(document).ready(function(){
    $('a[href$=".pdf"]').on("click", function(){
        if (this.href.split('.').pop() === 'pdf') {
            alert("The paragraph was clicked.");
        }
    });
});