Link to home
Start Free TrialLog in
Avatar of BWilden
BWilden

asked on

New Window

How do I create a hyperlink that automatically opens a new browser window when someone clicks on it?
ASKER CERTIFIED SOLUTION
Avatar of TooKoolKris
TooKoolKris

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of borb
borb

You don't need to use javasript to open a link in a
new browser window.

Just add TARGET = "_blank"

for example:
<A HREF ="http://www.expertsexchange.com TARGET = "_blank">Experts Exchange</A>

Just substitute the URL you want to use for your link

Cheers,

borb