JSFiddle - React, Tailwind, and code Playground

by Aleksey Karagodnikov

HTML

<a class='swatch-anchor' href='#' title='First'>Text 1</a>

<a class='swatch-anchor' href='#' title='Second'>Text 2</a>

<a class='swatch-anchor' href='#' title='Third'>Text 3</a>

JavaScript

$('.swatch-anchor').each(function () {
    var title = $(this).attr('title')
    $(this).text(title);
});