JSFiddle - React, Tailwind, and code Playground

by sarathsprakash

HTML

<div>hello how are you hello</div>

JavaScript

$(document).ready(function () {
     $("div").hover(function () {
         $(this).contents().each(function () {
             alert(this.nodeValue);
         });
     })
 });