JSFiddle - React, Tailwind, and code Playground

by akoptsov

HTML

<div id="content"></div>

CSS

p{
    font-family: sans-serif;
    font-size: large;
}

JavaScript

$(document).ready(function() {
    $('#content').append('<p> in $(document).ready</p>');
});

$(window).load(function() {
    $('#content').append('<p> in $(window).load</p>');
});

window.onload = function() {
    var content = document.getElementById('content');
    content.appendChild(document.createElement('p'))
        .innerHTML = 'in window.load!';
};