Published in: JavaScript
A bookmark-let that resizes the width of the view-port to 320 and the height of the window to the height of the screen excluding the task-bar. Then move the window to the left top corner.
/* javascript:moveTo(0,0);var width,height;width=outerWidth-innerWidth+320;height=screen.availHeight;resizeTo(width,height); */ moveTo(0, 0); var width, height; width = outerWidth - innerWidth + 320; height = screen.availHeight; resizeTo(width, height);
You need to login to post a comment.
