I am using jQuery slideshow to display images in a div. When displaying images with jpeg, png, jpg suffixes then the slideshow works in Mozilla and Chrome. But when we add SWF image it worked in Mozilla but not in Chrome. What to do?
I am using this code to display images:
<?php if($extimg=='swf'){ ?><embed src="<?php echo base_url();?>/uploads/<?php echo $test[0];?>" alt="Slide_show Image <?php echo $i+1; ?>" width="159" height="140" style=" margin-left:15.5px;border-radius:8px; margin-top:14.7px;"/> <?php }else{ ?>
<img src="<?php echo base_url();?>/uploads/<?php echo $test[0];?>" alt="Slide_show Image <?php echo $i+1; ?>" width="159" height="140" style=" margin-left:15.5px; border-radius:8px; margin-top:14.7px;"/> <?php } ?>