JSFiddle - React, Tailwind, and code Playground

by freedawirl

HTML

<a class="learnmore">Read More</a>

JavaScript

$('a.learnmore').each(function() {
        var text = $(this).text();
        $(this).text(text.replace('See Artist')); 
    });