JSFiddle - React, Tailwind, and code Playground

by stuttufu

HTML

<p>Resize browser window to check event.target of resize event</p>

JavaScript

$(window).on('resize',function (event){
    document.body.textContent = 'resized!';
    setTimeout(function(){
        document.body.textContent = '...'
    },100);
});
$(window).ready(function(){
    //$(window).trigger('resize');
});