Skip to content

Instantly share code, notes, and snippets.

@HeathLoganCampbell
Created May 27, 2019 05:33
Show Gist options
  • Save HeathLoganCampbell/eeaccb083080c03ad7d97480603384fd to your computer and use it in GitHub Desktop.
Save HeathLoganCampbell/eeaccb083080c03ad7d97480603384fd to your computer and use it in GitHub Desktop.
/**
Gets the widths and height of a browser
@Return (Width, Height)
**/
function getDimensions()
{
var element = document.documentElement,
body = document.body,
width = window.innerWidth || element.clientWidth || body.clientWidth,
height = window.innerHeight || element.clientHeight || body.clientHeight;
return [width, height]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment