JSFiddle - React, Tailwind, and code Playground
by TexasBrawler
HTML
<body>
<h1>{{text}}</h1>
<p>{{other text}}</p>
</body>
JavaScript
$('body *').each(function() {
alert($(this).html()); // must return {{text}}
});
by TexasBrawler
<body>
<h1>{{text}}</h1>
<p>{{other text}}</p>
</body>
$('body *').each(function() {
alert($(this).html()); // must return {{text}}
});