Pop Up window with no menu or toolbar

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm creating a personal web site and i want to create a site map that when you press a button it brings up a new window, but smaller in size and no menu or toolbars. How do I make it so the menu bar and toolbar wont show for the window and how do I force it to be the size i want? I have tried using the margin settings under page properties but that doesnt help. Thank you.
 
You have to use Javascript to open a new browser window like this. There are
lots of good, free scripts for doing this and you can find some at
javascript.internet.com and www.dynamicdrive.com

There's a great script at:
http://www.dynamicdrive.com/dynamicindex8/popwin.htm that will actually
generate the custom code for you so you don't have to modify much by hand.

Hope this helps,
Mark Fitzpatrick
Microsoft MVP - FrontPage



Leigh Ann said:
I'm creating a personal web site and i want to create a site map that when
you press a button it brings up a new window, but smaller in size and no
menu or toolbars. How do I make it so the menu bar and toolbar wont show
for the window and how do I force it to be the size i want? I have tried
using the margin settings under page properties but that doesnt help. Thank
you.
 
That Spawn works great, does just what I need, however I discovered a new problem. In the new window that pop ups I am using that as a site map window and I have links to other pages. Is there a way to make it when you click a link in the pop up window that it will open up back in the main IE window?
 
Hi,
you'd need to make links in the popup like this

<a href="javascript:;" onclick="opener.location.href='page.htm'; return
false;">link</a>

Jon
Microsoft MVP - FP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top