Title: Target Page
URL: http://www.activejump.com/g-5.shtml
Email: webmaster@activejump.com
Introduction
The target page feature, allows a link to be created that when clicked on, will open a new browser window, so that the user
will then have two windows in front of them, one, being the page with the link, and the other, the page the link went to.
Target Page
This allows you to have a link which opens a new window when clicked on. The tag for the link
looks like TARGET="name". This adds on to the normal link tag, so the final result looks like <A HREF="url" TARGET="name">.
The text, name, can be replaced with anything you want, which will be the name of the window that opens up. Choosing the
same name for two links allows you to have both these links open in the same new window.
|
index.html - Notepad |
....<BODY>
<A HREF="http://www.activejump.com" TARGET="new">
Go To Home Page In New Browser Window
</A>
</BODY>....
|
|
|