JSFiddle - React, Tailwind, and code Playground

by gnemeth

HTML

<div id="wrapper">
  <div id="col">
    <p id="text__holder"></p>
  </div>
</div>

JavaScript

var text__holder = $('#text__holder');

$(function() {
    text__holder.text('Inside DOM ready');
});

var writeSomeTxt = function () {
    text__holder.text('Outside DOM ready');
};

writeSomeTxt();