Guest User

Untitled

a guest
Oct 18th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function setScreenSize(width, height){
  2.        window.resizeTo(width,height);
  3.        window.moveTo((window.screen.availWidth - width)/2, (window.screen.availHeight - height)/2);
  4. }
  5.  
  6. $(window).load(function () {
  7.     setScreenSize(500,500);
  8. });
Add Comment
Please, Sign In to add comment