To maximize the browser window to fit the screen, we first move the window to the top left corner and then set its size to the size of the client’s desktop:
window.moveTo(0,0);
window.resizeTo(screen.width, screen.height);
To maximize the browser window to fit the screen, we first move the window to the top left corner and then set its size to the size of the client’s desktop:
window.moveTo(0,0);
window.resizeTo(screen.width, screen.height);