JSFiddle - React, Tailwind, and code Playground

by domenlightenment

HTML

<script src="https://getfirebug.com/firebug-lite-debug.js"></script>
<style></style>
<p id="p1"><em><strong>Jack and Jill go up a hill!</strong></em><p>

<p id="p2"><strong>Jack</strong> and <em>Jill</em> go <span>up <em>a</em> hill</span>!<p>

JavaScript

var p1 = document.querySelector('#p1');
var p2 = document.querySelector('#p2');
var style = document.querySelector('style');

console.log(p1,p2);

console.log(p2.firstChild.textContent);