kosmokramer
Programmer
Does anyone know if you can pass a variable with the <a href> tag? What I want to do is I have a page that is set up with frames. The left frame has thumbnails in it, and when you click on the thumbnail, the full size picure pops up in the middle frame. I have done this just by passing a picture:
<a href="somepicture.jpg" target="middle">
<img src="somepicureSmall.jpg">
</a>
The reason I set the link up this way is because I did not want to have to create a new html page for each image. I just wanted the image to show up. The problem I am running into is that I want to have a title under the picture. So, I am wondering if there is a way to within the <a href> tag send a variable which will put a caption under the image (perhaps a javascript document.write()...?)
Thanks!
<a href="somepicture.jpg" target="middle">
<img src="somepicureSmall.jpg">
</a>
The reason I set the link up this way is because I did not want to have to create a new html page for each image. I just wanted the image to show up. The problem I am running into is that I want to have a title under the picture. So, I am wondering if there is a way to within the <a href> tag send a variable which will put a caption under the image (perhaps a javascript document.write()...?)
Thanks!