views:

37

answers:

1
if(count > 0){
for(var i= parseInt(start); i < parseInt(count); i++)
{

link ='<a href="/diabetes/ropimages/origpicdisplay.php?pid='+pid+'&rid='+i+'" target="_blank"><img src="/diabetes/ropimages/thumbpicdisplay.php?pid='+pid+'&rid='+i+'"/><a>&nbsp;&nbsp;';

if(i > start){ $("#content1").append(link);}

else{ $("#content1").empty().html(link);}
}
}

i use code like this. it does print images in FF but not in IE6 any solutions for this ?

A: 

If you are using $(document).ready, as far as I remember it has some issues with IE6, so try to put it at the bottom.

o15a3d4l11s2
i am getting rest of data ,but only image displaying is problem
pradeep
Have you tried to validate the generated HTML in IE6?
o15a3d4l11s2