JSFiddle - React, Tailwind, and code Playground
by DinoMyte
HTML
<h1 class="slide-title">
<span class="slider-category">
<a href="/test/test.html"> Blocking irritating text</a>
</span>
Hong Kong Trip Nov 2015 – Day 3 Itinerary
</h1>
CSS
.slide-title
{
border: 2px solid;
}
JavaScript
$('h1').hover(function()
{
$(this).contents().filter(function() {
return this.nodeType == 3 ? $(this).wrap('<u></u>') : null;
});
});