I have a store that I'm building and I want to be able to click on a
thumbnail and have a popup window open with the enlargement in it. I have
this working right now using this.
<script>
function openpopup(){
var popurl="myurl.h tm"
winpops=window. open(popurl,"", "width=420,heig ht=440,")
}
</script>
<a href="javascrip t:openpopup()"> Image here</a>
All is good, except I have like 15 items on the page and need it to work
with a different URL for each page. Not sure how to do this, with an array?
Thanks in advance for your help.
Jamie
thumbnail and have a popup window open with the enlargement in it. I have
this working right now using this.
<script>
function openpopup(){
var popurl="myurl.h tm"
winpops=window. open(popurl,"", "width=420,heig ht=440,")
}
</script>
<a href="javascrip t:openpopup()"> Image here</a>
All is good, except I have like 15 items on the page and need it to work
with a different URL for each page. Not sure how to do this, with an array?
Thanks in advance for your help.
Jamie
Comment