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(wh ichcontent){
if (document.all|| document.getEle mentById){
cross_el=docume nt.getElementBy Id?
document.getEle mentById("middl e"):document.al l.middle
counter=0
for (i=1; i<10; i++){
counter=counter +1
cross_el.innerH TML='<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(wh ichcontent){
if (document.all|| document.getEle mentById){
cross_el=docume nt.getElementBy Id?
document.getEle mentById("middl e"):document.al l.middle
counter=0
for (i=1; i<10; i++){
counter=counter +1
cross_el.innerH TML='<img src="images/pic"+i+".jpg"> '
}
}
}
Comment