JSFiddle - React, Tailwind, and code Playground

by Nikola Mihin

HTML

<script src="https://code.jquery.com/jquery-3.3.1.js"></script>

JavaScript

width = $(window).width();
height = $(window).height();

var onresize = function(e) {
            width = $(window).width();
            height = $(window).height();
            if(height > 768)
              console.log("> 768")
            else
              console.log("< 768")
console.log(width,height)
}

window.addEventListener("resize", onresize);
        
//console.log(width,height)