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

Opening links in a new window

Status
Not open for further replies.

kwunder

Technical User
Jun 2, 2001
860
GB
Hi,
I have a collectino of links on my site. How can I get them to open in a separate page when tehy are clicked ? (So my page stays open underneath)

Thanks
KWunder
 
Simplest way is to do this:
Code:
<a href=&quot;foo.html&quot; target=&quot;new&quot;>...</a>
                   ^^^^^^^^^^^^
Otherwise, to control how the window opens, search on google for &quot;javascript window open&quot;.
 
Thanks Dakota

I'm a bit lame with html.
So after the actual link (href=&quot;***********.com) I type exactly target=&quot;new&quot;

and that's it ?
Thanks again
KWunder
 
Ramani

Whats this Tips & Tricks business ?

 
A tip that will serve you well in beginning html programming, just find a site that implements what you also want to do, and just look at the source code; that's how every one of us learned atleast some html.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top