JSFiddle - React, Tailwind, and code Playground

by a_miguel6687

HTML

<div id="search-helper-container">
    Did you mean:
    <a href="#" class="search-match">Cloud Strife</a>
    <a href="#" class="search-match">Tifa Lockheart</a>
    <a href="#" class="search-match">Cid Highwind</a>
    <a href="#" class="search-match">Yuffie Kisaragi</a>
</div>

JavaScript

$('#search-helper-container a.search-match').on('click',function(e){
            e.preventDefault();
            var test = $(this).text();
            console.log(test);
        });