JSFiddle - React, Tailwind, and code Playground

by webchemist

HTML

<p>A nice house was found in <b>Toronto</b></p>

JavaScript

var text = $('p');
    
    alert( text.html() );
    //Outputs A nice house was found in <b>Toronto</b>
    
    alert( text.text() );
    ////Outputs A nice house was found in Toronto