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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

IE will open full screen but Netscape wont! Can someone help?

Status
Not open for further replies.

Hisakata

Technical User
Sep 24, 2002
36
US
Hello guys, this is the link


When you click enter IE will open full screen but netscape won't.

What code do I have to change for netscape? I never use netscape but noticed it doesn't work and the client needs it to work .Thanks all.
 
Your client may require it to work but any site that opens full screen on my pc gets shut without even looking at it

[Peace][Pipe]
 
'fullscreen' in window.open is IE command only...

Known is handfull, Unknown is worldfull
 
Is there a way to make the front page detect netscape then just open a regular window? Thanks guys!
 
sure:
if(navigator.appName=="Microsoft Internet Explorer")
{
//Open IE window
}
else
{
//Open non IE window
}

Known is handfull, Unknown is worldfull
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top