JSFiddle - React, Tailwind, and code Playground
by David Thomas
HTML
<div id="s">Text in 's'</div>
JavaScript
var s = document.getElementById('s'),
$s = $('#s');
console.log(s, $s);
by David Thomas
<div id="s">Text in 's'</div>
var s = document.getElementById('s'),
$s = $('#s');
console.log(s, $s);