Images not showing in ie7 using jquery cycle and jCarouselLite plugin
- by Geetha
Hi All,
I am using jquery cycle and jCarouselLite plugin to display images as slide. Images are getting displayed in ie7. but working perfect in ie6.
Image Property inside the cycle control:
Protocol: Not available
Type: Not available
Address(url): Not available
Size: Not available
Dimensions: 100X100
but control having the url. if i tried that image url separate it showing the image.
Code:
$('#slide').cycle({
fx: 'fade',
continuous: true,
speed: 7500,
timeout: 55000,
sync: 1
});
Html Code:
<div id="slide">
<img src="samp1.jpg" width="664" height="428" border="0" />
<img src="samp2.jpg" width="664" height="428" border="0" />
<img src="samp3.jpg" width="664" height="428" border="0" />
<img src="samp4.jpg" width="664" height="428" border="0" />
<img src="samp5.jpg" width="664" height="428" border="0" />
<img src="samp6.jpg" width="664" height="428" border="0" />
<img src="samp7.jpg" width="664" height="428" border="0" />
<img src="samp8.jpg" width="664" height="428" border="0" />
</div>
Geetha.