JSFiddle - React, Tailwind, and code Playground
HTML
<div>hello how are you hello</div>
JavaScript
$(document).ready(function () {
$("div").hover(function () {
$(this).contents().each(function () {
alert(this.nodeValue);
});
})
});