JSFiddle - React, Tailwind, and code Playground

by sushanth009

HTML

<div id="foo"><span class="bar"><em>hello</em><br></span>world</div>

JavaScript

$('#foo').on('click', function(){
      var htm = $(this).html();
      var txt = $(this)[0].innerText;
      console.log(htm);
      console.log(txt)
});