
December 15th, 2002
03:18 AM
link problem
Well i have tons of images on a page on my site so i decided i'd organize them by putting text links, that when clicked on open a new window to show the image in. Rather than displaying it in the same window. (would i use javascript or html for this? if so how?)
___________________
Nothingness
http://clik.to/nothingness

December 15th, 2002
03:50 AM
we all fall down.
Status: Offline!
in your <a href> tag, put target="_blank"
so it'll look like this..
<a href="http://www.whatever.com" target="_blank">
then just go on and link the stuff.
if you want to make them open up in a window without all the status bar stuff, you have to use a little javascript i believe.. i can get you the code if you need it
___________________
"Not everyone has a sob story, and even if they do, it's no excuse."
i don't even own a tv.

December 15th, 2002
09:55 PM
no thanks, but thanks for the help 
___________________
Nothingness
http://clik.to/nothingness

December 16th, 2002
06:25 PM
Neverside Newbie
Status: Offline!
Just put this at the top:
<base target="_blank">
It will work for any link bellow it in the code.