JSFiddle - React, Tailwind, and code Playground
by jdb1991
JavaScript
var width = document.body.offsetWidth;
var bodyHeight = document.body.scrollHeight;
var height = (typeof window.innerHeight !== "undefined")? window.innerHeight : (document.documentElement)? document.documentElement.clientHeight : document.body.clientHeight;
height = (bodyHeight > height)? bodyHeight : height;
alert(width+","+height);