JSFiddle - React, Tailwind, and code Playground

by johnc_22

HTML

<div id="log"></div>

JavaScript

jQuery(document).ready(function() {
    jQuery(window).on("resize", function()
                      {
                          jQuery("#log").append("resize<br />");
                      }).on("focus", function()
                            {
                                  jQuery("#log").append("focus<br />");
                            }).on("blur", function()
                                  {
                                      jQuery("#log").append("blur<br />");
                                    });
});