View Full Version : Link help please


kikichan
04-10-2004, 08:15 AM
i cant find the code to make it so a link opens up to a new page... :( does anyone here know it?

girl2k
04-10-2004, 08:27 AM
how about <A href="URL here" target="_blank">text</a> ? that works

Waasae
04-10-2004, 09:47 AM
Or could you also have meant opening a link in a brand new window? I mean, a new window popping up?

If so, a href="url" target="new"
might help you. :)

Sheila
04-10-2004, 11:06 AM
Or you could use....

If you want to target all your links, use this (Place it above your links.).....
<Base Target="_blank">

thejermyn
04-10-2004, 05:29 PM
Lol, I think its a bit confusing, but I think his looking for this:

<a href="URL of page you wanna link to">your text goes here</a>

your text goes here---> when ppl click the text, they get linked to the -----> URL of page you wanna link to.

kikichan
04-11-2004, 04:22 AM
i mean i have the like code as:

<a href="http://" target="_new">

but like a lot of the times it doesnt work and i thought it was the code...could it just be my computer then?

jazzberry
04-11-2004, 04:28 AM
I don't think _new will work, try _blank

kikichan
04-11-2004, 09:40 PM
then whats the difference bewteen _new and _blank?

MaGiCSuN
04-11-2004, 09:50 PM
_new doesn't excist. new however does, without the _

new = opens page into new window, but if there is allready a second window open it will open the page into that one
_blank = opens the page into a whole new window, even if there are allready more windows open

Love,
Mirna

kikichan
04-12-2004, 05:41 AM
ohhh...so THATS the problem. =P ok good to know. thanks. ^_^