Sep 1, 2002 #1 Christylh8 IS-IT--Management Joined Jul 14, 2002 Messages 25 Location US Is there any code which could make HTML document or page always open maximized/full-screen? Thanks! Christy
Is there any code which could make HTML document or page always open maximized/full-screen? Thanks! Christy
Sep 1, 2002 1 #2 SPYDERIX Technical User Joined Jan 11, 2002 Messages 1,899 Location CA Hi, You can use this: <script language="JavaScript"> self.moveTo(0,0);self.resizeTo(screen.availWidth,screen.availHeight);self.focus(); </script> Hope this helps! NATE design@spyderix-designz.com http://www.spyderix-designz.com Upvote 0 Downvote
Hi, You can use this: <script language="JavaScript"> self.moveTo(0,0);self.resizeTo(screen.availWidth,screen.availHeight);self.focus(); </script> Hope this helps! NATE design@spyderix-designz.com http://www.spyderix-designz.com
Sep 1, 2002 Thread starter #3 Christylh8 IS-IT--Management Joined Jul 14, 2002 Messages 25 Location US Thank you so much...it worked! Christy Upvote 0 Downvote