(sorry. *this got x-posted)Each time you click, you set all but one of the images to
My intention was to have a map as background and on mouseclick (or whatever)
displaying 1 of the trips we've made with the posibility to display 2 or more
trips on the same background. *The images (img1, img2 etc) *were madewith a
transparent *background, but for some reason the images are not superimposed but
replace each other. What did I miss?
[deleted]
for(i=0;i<objId.length;i++)
{
if(objName == objId[i])
{
obj.style.display = "block";}
else
{
tempObj = document.getElementById(objId[i]);
tempObj.style.display = "none";}
}
return;
}
</script>
[deleted]
"display:none". Isn't that clear?