JSFiddle - React, Tailwind, and code Playground
HTML
<a href="#" class="link" title="this will be converted to uppercase">Link Text</a>
JavaScript
function changeTitle(){
$('.link').each(function(){
$(this).attr('title',$(this).attr('title').toUpperCase());
});
}
changeTitle();