Connecting Tech Pros Worldwide Forums | Help | Site Map

<a target="_blank" /> opens half-size IE6 window

John A Grandy
Guest
 
Posts: n/a
#1: May 2 '06
I have a js function that dynamically generates a block of html that
includes an anchor tag :

<a href="http://www.google.com" target="_blank" />

When the user clicks this link, the new IE6 browser window is full vertical
size, but only half horizontal size (of available screen area).

Starting iexplore.exe independently opens a full-size browser window.

Is this a machine-by-machine problem related to some OS or IE config setting
? Or can html be written to ensure that the newly opened browser window is
full-size ?

Thanks.



MSDN
Guest
 
Posts: n/a
#2: May 2 '06

re: <a target="_blank" /> opens half-size IE6 window


onclick="window.open('../somepage.aspx','windowName','width=430,height=470, left=100,top=110');"

"John A Grandy" <johnagrandy-at-yahoo-dot-com> wrote in message
news:uSsbQ6ibGHA.3872@TK2MSFTNGP04.phx.gbl...[color=blue]
>I have a js function that dynamically generates a block of html that
>includes an anchor tag :
>
> <a href="http://www.google.com" target="_blank" />
>
> When the user clicks this link, the new IE6 browser window is full
> vertical size, but only half horizontal size (of available screen area).
>
> Starting iexplore.exe independently opens a full-size browser window.
>
> Is this a machine-by-machine problem related to some OS or IE config
> setting ? Or can html be written to ensure that the newly opened browser
> window is full-size ?
>
> Thanks.
>[/color]


Göran Andersson
Guest
 
Posts: n/a
#3: May 3 '06

re: <a target="_blank" /> opens half-size IE6 window


The window will be opened using the same size as the last known IE
window that was opened non-maximized. I beleive the reason that the
window is not opened maximized is that the user should be made aware
that it's a new window and not just a new page in the same window.

John A Grandy wrote:[color=blue]
> I have a js function that dynamically generates a block of html that
> includes an anchor tag :
>
> <a href="http://www.google.com" target="_blank" />
>
> When the user clicks this link, the new IE6 browser window is full vertical
> size, but only half horizontal size (of available screen area).
>
> Starting iexplore.exe independently opens a full-size browser window.
>
> Is this a machine-by-machine problem related to some OS or IE config setting
> ? Or can html be written to ensure that the newly opened browser window is
> full-size ?
>
> Thanks.
>
>[/color]
John A Grandy
Guest
 
Posts: n/a
#4: May 4 '06

re: <a target="_blank" /> opens half-size IE6 window


I believe there must be a way to force the new window to open maximized. I
have seen web-sites where all links clicked to external sites open new
maximized windows highest on the z-axis.

"Göran Andersson" <guffa@guffa.com> wrote in message
news:OuJxzYqbGHA.3380@TK2MSFTNGP04.phx.gbl...[color=blue]
> The window will be opened using the same size as the last known IE window
> that was opened non-maximized. I beleive the reason that the window is not
> opened maximized is that the user should be made aware that it's a new
> window and not just a new page in the same window.
>
> John A Grandy wrote:[color=green]
>> I have a js function that dynamically generates a block of html that
>> includes an anchor tag :
>>
>> <a href="http://www.google.com" target="_blank" />
>>
>> When the user clicks this link, the new IE6 browser window is full
>> vertical size, but only half horizontal size (of available screen area).
>>
>> Starting iexplore.exe independently opens a full-size browser window.
>>
>> Is this a machine-by-machine problem related to some OS or IE config
>> setting ? Or can html be written to ensure that the newly opened
>> browser window is full-size ?
>>
>> Thanks.[/color][/color]


Göran Andersson
Guest
 
Posts: n/a
#5: May 4 '06

re: <a target="_blank" /> opens half-size IE6 window


Are you sure that they were maximized, and not only resized (using
javascript) to fill the screen?

John A Grandy wrote:[color=blue]
> I believe there must be a way to force the new window to open maximized. I
> have seen web-sites where all links clicked to external sites open new
> maximized windows highest on the z-axis.
>
> "Göran Andersson" <guffa@guffa.com> wrote in message
> news:OuJxzYqbGHA.3380@TK2MSFTNGP04.phx.gbl...[color=green]
>> The window will be opened using the same size as the last known IE window
>> that was opened non-maximized. I beleive the reason that the window is not
>> opened maximized is that the user should be made aware that it's a new
>> window and not just a new page in the same window.
>>
>> John A Grandy wrote:[color=darkred]
>>> I have a js function that dynamically generates a block of html that
>>> includes an anchor tag :
>>>
>>> <a href="http://www.google.com" target="_blank" />
>>>
>>> When the user clicks this link, the new IE6 browser window is full
>>> vertical size, but only half horizontal size (of available screen area).
>>>
>>> Starting iexplore.exe independently opens a full-size browser window.
>>>
>>> Is this a machine-by-machine problem related to some OS or IE config
>>> setting ? Or can html be written to ensure that the newly opened
>>> browser window is full-size ?
>>>
>>> Thanks.[/color][/color]
>
>[/color]
Laurent Bugnion
Guest
 
Posts: n/a
#6: May 8 '06

re: <a target="_blank" /> opens half-size IE6 window


Hi,

John A Grandy wrote:[color=blue]
> I believe there must be a way to force the new window to open maximized. I
> have seen web-sites where all links clicked to external sites open new
> maximized windows highest on the z-axis.[/color]

I don't know any way of opening a maximized window using JavaScript.
However, you can read the screen width and height, and use these as
parameters for the window.open method (using the attributes string).

Also, if the window is maximized along the Z-axis, don't put your face
too near from the computer screen ;-)

Laurent
--
Laurent Bugnion, GalaSoft
Software engineering: http://www.galasoft-LB.ch
Private/Malaysia: http://mypage.bluewin.ch/lbugnion
Support children in Calcutta: http://www.calcutta-espoir.ch
Closed Thread