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'));
});
by freedawirl
<a class="learnmore">Read More</a>
$('a.learnmore').each(function() {
var text = $(this).text();
$(this).text(text.replace('See Artist'));
});