Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Bookmarklets that are moving as little as possible.' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Bookmarklets that are moving as little as possible.
Authored by: pwever on Jan 29, '04 01:07:31PM
800 pixel wide, as tall as possible, staying as close to the current position as possible: *

javascript:self.moveTo(Math.min(self.screenLeft,screen.availWidth-800),0);self.resizeTo(800,screen.availHeight);
800 pixel wide, 600 pixel tall, staying as close to the current position as possible: **

javascript:self.moveTo(Math.min(self.screenLeft,screen.availWidth-800),Math.min(self.screenTop,screen.availHeight-600));self.resizeTo(800,600);


[ Reply to This | # ]