screen-size.js 365 B

12345678
  1. function get_screen_size(width = screen.width, height = screen.height) {
  2. const expiry = new Date();
  3. expiry.setTime( expiry.getTime()+(3600*60*1000) );
  4. document.cookie='screenWidth='+width+'; expires='+ expiry.toGMTString() + ';path=/';
  5. document.cookie='screenHeight='+height+'; expires='+ expiry.toGMTString() + ';path=/';
  6. location.reload();
  7. }