"Mike" <mdempsey1128 (AT) charter (DOT) net> wrote
Quote:
Hello,
This may be a dumb question, but how do I make my target a "pop up window"
without all the regular browser toolbars ect?
Thank you |
<a href="bob.html" target="anythingyouwant">click here</a>
The take home principle is that you need a target="" on your href, and if
what's in the quotes doesn't already exist, then it will result in a new
window being opened.
For example, say you had a frame layout. You would have had to name the
frames. Say one frame is named "left".
If you target="left" then the link will go to that left frame. By naming
that frame, you created a window named "left".
If you currently don't have frames or other named windows like that, then
you can pick any target name you want for the new popup.
Technically, you could use target="_NEW", but like I said, in practice as
long as you choose a name that doesn't exist already, it will open a new
window.
--
Shawn Wilson