NetworkGeezer Posted March 21, 2007 Posted March 21, 2007 Is there any way that a webpage can be coded to start maximiised or at some other predetrmined size? TIA
webman Posted March 21, 2007 Posted March 21, 2007 You'll need to use a bit of Javascript. Have a look at this one on DynamicDrive, or try one of the others.
here_hare_here Posted March 21, 2007 Posted March 21, 2007 I use this. It opens a page in fullerscreen with no toolbars. I only use it on the intranet to pop up the Internet Policy for the kiddies to read. It doesnt work properly with firefox though. window.open("page_to_open.htm","fs","fullscreen=yes")
mac_shinobi Posted March 21, 2007 Posted March 21, 2007 window.onload = function() { window.moveTo(0, 0); window.resizeTo(screen.availWidth, screen.availHeight); } 1
PaulBM Posted March 28, 2007 Posted March 28, 2007 I'd never do this... one thing I hate is a website that fiddles with my browser window size. I control my browser not the website designer. If I choose to have scroll bars that's my choice. Only thing worse than changing my browser size are sounds or music playing automatically. :twisted:
localzuk Posted March 28, 2007 Posted March 28, 2007 PaulBM - it depends what the use of the site is. If it is a MOTD page or a terms notice then you'd want to do this, but I agree about the internet in general.
PaulBM Posted March 28, 2007 Posted March 28, 2007 Good point, but we all know that kids never read MotD's anyway. We tend to use the desktop wallpaper for our announcements.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now