JSFiddle - React, Tailwind, and code Playground
by Ronny
HTML
The syntaxes of jQuery <code>ready</code>
JavaScript
var ready = function(){
console.log($('body'));
};
$(ready);
jQuery(ready);
$(document).ready(ready);
$(document).bind('ready', ready);