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

Window

Status
Not open for further replies.

Pushkin

Programmer
May 28, 2002
22
0
0
BE
How can I open a window directly without toolbars.
It must open without toolbars right after clicking the link.

So, my homepage (by matter of speach) must open without toolbars.

Thanks,

Pushkin
 
Hi,
I hope following example will help you.
sFeatures = "left=0, "
sFeatures = sFeatures & "top=0, "
sFeatures = sFeatures & "height=" & window.screen.availHeight - 29 & ","
sFeatures = sFeatures & "width=" & window.screen.availWidth - 10 & ","
sFeatures = sFeatures & "status=no,toolbar=no,menubar=no,location=no"
window.open "wcSplash.asp", "E2K", sFeatures
 
Where do I put this?

In the head section or someplace else?

I've really no idea

When I put it in a link on another page (which redirects to my homepage) it opens a new window without toolbars.

But I want it to open directly without toolbars (also when you enter the URL in your browser)

Thanks
 
Ok, thanks, Can I just put in the head-section of the html-script or not?

Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top