Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

poppign issues in Firefox 1

Status
Not open for further replies.

TheConeHead

Programmer
Aug 14, 2002
2,106
US
the height of this window that is popped is huge - I am using:

onLoad="javascript:window.open('index2.html','','status=yes; height=600px, width=800px,left=200px,top=50px')"

Any reason why in Firefox it would not be 600px? width works fine....

[conehead]
 
start by replacing the semicolon with a comma.

Code:
window.open('index2.html','','status=yes[red],[/red] height=600px, width=800px,left=200px,top=50px')



*cLFlaVA
----------------------------
[tt]I already made like infinity of those at scout camp...[/tt]
[URL unfurl="true"]http://www.coryarthus.com/[/url]
[banghead]
 
if that doesn't work, try removing the "px" from each of the units of measure, and if that still doesn't work, give an explicit window name for the second parameter, rather than an empty string.



*cLFlaVA
----------------------------
[tt]I already made like infinity of those at scout camp...[/tt]
[URL unfurl="true"]http://www.coryarthus.com/[/url]
[banghead]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top