October 30, 200322 yr I picked this script up but it does not work with safari... any suggestions? function resizeMain() { self.moveTo(0,0); if (parseInt(navigator.appVersion)>3) { if (navigator.appName=="Netscape") { top.outerWidth=self.screen.availWidth; top.outerHeight=self.screen.availHeight; } else top.resizeTo(self.screen.availWidth,self.screen.availHeight); } }
October 30, 200322 yr what do mean by "full screen"? chromeless windows? or just a window that fits the resolution of user screen?
October 30, 200322 yr I've done some testing and found that "window.resizeTo()" and "window.resizeBy()" are not working with Safari However, "screen.availWidth" and "screen.availHeight" are! All the best. Garry
October 30, 200322 yr I have this as a bookmark in my Safari bookmarks bar: javascript:self.moveTo(0,0);self.resizeTo(screen.availWidth,screen.availHeight);
Create an account or sign in to comment