R
Richard
This simple change to dynamicdrive's textual tooltip does what I want
perfectly.
(whichcontent) determines which group of thumbs will be shown.
My color coded editor is showing me that something is not quite kosher and I
can't figure out what it is.
Everything appears to be fine up until you get to i<10 then it screws up.
I know everything else works fine.
With a click, I can put a single image into my "middle" column with ease.
But I want to show the entire group of thumbs, not just one.
Any clues appreciated.
function changethumbs(whichcontent){
if (document.all||document.getElementById){
cross_el=document.getElementById?
document.getElementById("middle"):document.all.middle
counter=0
for (i=1; i<10; i++){
counter=counter+1
cross_el.innerHTML='<img src="images/pic"+i+".jpg">'
}
}
}
perfectly.
(whichcontent) determines which group of thumbs will be shown.
My color coded editor is showing me that something is not quite kosher and I
can't figure out what it is.
Everything appears to be fine up until you get to i<10 then it screws up.
I know everything else works fine.
With a click, I can put a single image into my "middle" column with ease.
But I want to show the entire group of thumbs, not just one.
Any clues appreciated.
function changethumbs(whichcontent){
if (document.all||document.getElementById){
cross_el=document.getElementById?
document.getElementById("middle"):document.all.middle
counter=0
for (i=1; i<10; i++){
counter=counter+1
cross_el.innerHTML='<img src="images/pic"+i+".jpg">'
}
}
}