How to open Popup from hyperlink and not show toolbars, favorits, etc

  • Thread starter Thread starter moondaddy
  • Start date Start date
M

moondaddy

I want to open a popup from a hyperlink on an aspx page and show it just as
a small information window with a message in it. I don't want any toolbars,
or favorites window (if the user had their favorites open). how can I do
this with out making the aspx page do a post back.
 
Look at the javascript function window.open() there are features for
specifying what is shown...

ex: window.open("page.aspx", "pageName",
"toolbar=no,status=no,width=300,height=300");

-th
 
Thanks that did it!

--
(e-mail address removed)
Tim Heuer said:
Look at the javascript function window.open() there are features for
specifying what is shown...

ex: window.open("page.aspx", "pageName",
"toolbar=no,status=no,width=300,height=300");

-th
 

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