Jump to content

This topic is 7764 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

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);

}

}

Posted

what do mean by "full screen"? chromeless windows?

or just a window that fits the resolution of user screen?

Posted

I have this as a bookmark in my Safari bookmarks bar:

javascript:self.moveTo(0,0);self.resizeTo(screen.availWidth,screen.availHeight);

This topic is 7764 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.