Guest User

Untitled

a guest
Dec 16th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. var windowInnerHeight=0;
  2. var windowInnerWIdth=0;
  3. function studycomfort_function_calculateWindowInnerWidthHeight()
  4. {
  5.  
  6. var div=document.createElement("DIV");
  7. div.style.position="absolute";
  8. div.style.left="0px";
  9. div.style.top="0px";
  10. div.style.width="100vh";
  11. div.style.height="100vh";
  12. document.body.appendChild(div);
  13. windowInnerHeight=div.getBoundingClientRect().bottom;
  14. windowInnerWidth=div.getBoundingClientRect().right;
  15. document.body.removeChild(div);
  16. return;
  17.  
  18. }
Add Comment
Please, Sign In to add comment