PDA

View Full Version : How to open hyperlink in new window?


kippie
08-31-2002, 10:01 PM
How can I open a link in a new window instead of getting the new link in the old window? For example in this html:

<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
</head>
<body>
To go to Shell click <a href="http://www.shell.com">here</a>
</body>
</html>

Kippie

joh6nn
08-31-2002, 10:37 PM
<a href="http://www.shell.com" target="something">here</a>
opens a new window named "something", and opens all subsequent clicks in that window.

<a href="http://www.shell.com" target="_blank">here</a> opens every click on the link in a new window

kippie
09-01-2002, 10:16 AM
Thanks John
Kippie