Yeah, I know what you mean. The window resizes to fit the screen but doesn't
maximise entirely. I'm afraid I can't help you out there though... I'm not
sure how you would go about activating the browsers own maximise property.
If I find anything though, I'll be sure to let you know.
----- Original Message -----
From: "rgsiva" <rghsiva@e...>
To: "JavaScript HowTo" <javascript_howto@p...>
Sent: Monday, January 14, 2002 12:37 PM
Subject: [javascript_howto] maximising the window
> Hi
> Thanks.the code is working.But it makes the browser window to fill the
> entire screen width and height except task bar.but the browser window
didn't
> get docked like how the ie window will appear in maximized mode.I want
> exactly the same appearance as that of maximize button clicked.
> now the appearance is slightly different.is it possible to make the
browser
> window docked with task bar.to have same appearance as that of maximize
> option.
>
> Thanks and regards
> jothi
> ----- Original Message -----
> >
> > Subject: Re: maximize ie window
> > From: "Ken Stanley" <ken.stanley@b...>
> > Date: Fri, 11 Jan 2002 10:47:35 -0000
> > X-Message-Number: 9
> >
> > Try this JavaScript function, calling it on the onLoad event. I haven't
> > tested it cross browser but it should work:
> >
> > function maximizeWin() {
> > if (window.screen) {
> > var aw = screen.availWidth;
> > var ah = screen.availHeight;
> > window.moveTo(0, 0);
> > window.resizeTo(aw, ah);
> > }
> > }
> >
> >
> > ----- Original Message -----
> > From: "Peter Mickelsson" <peter.mickelsson@a...>
> > To: "JavaScript HowTo" <javascript_howto@p...>
> > Sent: Friday, January 11, 2002 8:07 AM
> > Subject: [javascript_howto] Re: maximize ie window
> >
> >
> > > If you want to expand the window over the whole screen, you can use
> > > screen.availWidth and screen.availHeight as values.
> > > /Peter
> > >
> > >
> > > ----- Original Message -----
> > > From: "rgsiva" <rghsiva@e...>
> > > To: "JavaScript HowTo" <javascript_howto@p...>
> > > Sent: Friday, January 11, 2002 2:37 AM
> > > Subject: [javascript_howto] maximize ie window
> > >
> > >
> > > > Hi
> > > > I want to maximize the browser window on opening a page.
> > > > I tried with window.resizeTo(800,640) and various other values of
> width
> > > and
> > > > height.
> > > > but there is a little difference between the maximized window and
> > resized
> > > > window.
> > > > How to maximize the browser window with JavaScript
> > > >
> > > > thanks in advance
> > > >
> > > > with regards
> > > > jothi
>
>
>
$subst('Email.Unsub').