JSFiddle - React, Tailwind, and code Playground

by Jim_Toth

HTML

<h1 class="widget-title"><span>Tag Cloud</span></h1>

CSS

b {
    color: red
}

JavaScript

$('h1 span').html(function () {
    var $$text = $(this).text().split(" ");
    var $$last = $$text.shift();
    return ($$text.length > 0 ? '<b>' + $$last + '</b> ' : $$last) + $$text.join(" ");
});