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

Opening a new window full screen

Status
Not open for further replies.

Zoom1234

Programmer
Joined
Oct 30, 2003
Messages
116
Location
BE
Hi,

I am trying to open a window which will be full screen, just like a page opens using 'href' tag.
I tried following codes
1) window.open(fileName, "main", "screenX = 0, screenY = 0, width=800, height=600, location=no, menubar=no, status=no, toolbar=yes, scrollbars=yes, resizable=yes");
2) window.open(fileName, "_blank", "fullscreen");

None of the above seems to be working

Any ideas please

 
try this:
Code:
window.open("xxx.html","y","screenx=0,screeny=0,fullscreen,scrollbars=yes")

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

Part and Inventory Search

Sponsor

Back
Top