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

Web Site to open up without toolbars/menus and etc.

Status
Not open for further replies.

bjm027

MIS
Mar 7, 2003
59
US
I have seen it done before, but I am not sure on how to do it. I am making an extension to another website and when someone clicks on the link to check out this site, I want it to open up in a seperate window. This window I want to have only the web site without the toolbar, menu bar, status bar, etc.

What do you think?
Possible?
Any help appreciated.

thanks in advance.....
 
Searched google for you ([soapbox] which you could've done) and got this one of the first sites that came up


<!-- TWO STEPS TO INSTALL POPUP WINDOW:

1. Paste the first into the HEAD of your HTML document
2. Use the code to open the popup page on your site -->

<!-- STEP ONE: Copy this code into the HEAD of your HTML document -->

<HEAD>

<SCRIPT LANGUAGE=&quot;JavaScript&quot;>
<!-- Idea by: Nic Wolfe (Nic@TimelapseProductions.com) -->
<!-- Web URL: -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! -->

<!-- Begin
function popUp(URL) {
day = new Date();
id = day.getTime();
eval(&quot;page&quot; + id + &quot; = window.open(URL, '&quot; + id + &quot;', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=600,height=650,left = 212,top = 59');&quot;);
}
// End -->
</script>


<!-- STEP TWO: Use the following link to open the new window -->

<A HREF=&quot;javascript:popUp(' the Popup Window</A>

<!-- Script Size: 0.73 KB -->



Here's one site I enjoy visiting as an example.

user.gif

There's never time to do it right, but there's always time to do it over!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top