View Full Version : how do you open a picture in a new window...............more -


ataina1200
03-09-2004, 10:29 PM
how do you open a picture in a new window but with just having the picture there and no extra page around it...

example
http://www.stolen-wings.org/art1.html

you have to click on a picture. no how to do that????? help please! thanks a bunch!

FantasyDreams12
03-09-2004, 10:46 PM
well you have to make a new page for every content you want seperatley...upload the pic and where your menu is put the URL of the pic and name the pic...you get what I mean?? i dont know how to make thumbnails though

lovely
03-09-2004, 10:52 PM
It's java script. Like this:

<script language="javascript" type="text/javascript">
//<!--
function track()
{ window.open ("chocolate.html","chocolate","width=400,height=400,location=0,menubar=0,resizabl e=0,scrollbars=0,status=0,titlebar=0,toolbar=0") }
-->
</script>

Change everything in bold! Make one for each pic (with different names, of course). And then, for every link:

<A HREF="javascript:chocolate()"><SRC="chocolate.gif"></A>

Make sure the italic parts match!!


edit:

FantasyDreams12's way will work too, but the window that comes up won't be sized exactly to the pic - it will be full size. I think the only way to manipulate the window size is with java.

lovely
03-09-2004, 10:54 PM
FantasyDreams12's way will work too, but the window that comes up won't be sized exactly to the pic - it will be full size. I think the only way to manipulate the window size is with java.

MaGiCSuN
03-10-2004, 09:14 AM
<A HREF="java_script_:chocolate()"><SRC="chocolate.gif"></A>

should be:

<A HREF="java_script_:chocolate()"><img SRC="chocolate.gif"></A>

and make sure you take out the _ in the word javascript. The forum puts them in :)

Love,
Mirna

lovely
03-10-2004, 05:38 PM
lol, whoops! Good catch, Mirna. :confusion I don't know how I missed that one!

MaGiCSuN
03-10-2004, 06:51 PM
hehe it's allright ;)

Love,
Mirna

ataina1200
03-10-2004, 08:15 PM
lol.. i caught that too, thanks for your help guys!