JSFiddle - React, Tailwind, and code Playground

by Tushar Thakare

HTML

<input />

JavaScript

var sumedges = $(window).width() + $(window).height();
$(window).resize(function(){
    if($(window).width() + $(window).height() < sumedges) {
 alert("1");
  } else {
 alert("2");
  }
});