JSFiddle - React, Tailwind, and code Playground

by hoss

HTML

resize me!

JavaScript

$(window).resize(function() {
    clearTimeout(this.id);
    this.id = setTimeout(doneResizing, 500);
});

function doneResizing(){
  $("body").append("<br/>done!");   
}