JSFiddle - React, Tailwind, and code Playground

by hutber

JavaScript

SD = {
    moreBelow: {
        init: function(){
            console.info(this);
        },
        check: function(){
            console.info(this);
        }
    },   
}

SD.moreBelow.init();
SD.moreBelow.check();
$(window).resize(function(){SD.moreBelow.check()});