JSFiddle - React, Tailwind, and code Playground

by rexfiddle

HTML

<div id="test">abc <span>foobar</span> xyz</div>

JavaScript

var text = $('#test').text();
var html = $('#test').html();

alert("text: " + text);
alert("html: " + html);