JSFiddle - React, Tailwind, and code Playground
by Sam88
HTML
<div class="prova">uno <span>due</span> tre</div>
JavaScript
//nodeValue
$('.prova').contents()
.filter(function() {
return this.nodeType === 3;
}).replaceWith('lol')
by Sam88
<div class="prova">uno <span>due</span> tre</div>
//nodeValue
$('.prova').contents()
.filter(function() {
return this.nodeType === 3;
}).replaceWith('lol')