
I am using a Follow Link on Mouseover script (you mouseover a text link or image link and it will open said link without clicking), but am unable to make it open in a specifically targeted frame (i.e. an inline frame). No matter what I do it will only open in a new window. The idea is to use this for thumbnails and have the larger pic open in an inline frame on the same page. If there is an easier simpler way to do this Im up for it. If I can just target the larger images to display in a specified table cell that would be great too. Please, any help is GREATLY appreciated. Below is the script I am using.
<script>
function loadfollow(which){
if (!window.win2¦¦win2.closed)
win2=window.open(which.href)
else
win2.location=which.href
}
</script>
<a onMouseover="loadfollow(this)" href ="pic.jpg">
Comment