Fida
Fida

Reputation: 71

jQuery slide show not working in IE9

I have tried to have the jQuery Slideshow in one of my site, but it is now not working in IE9. It is working fine in all IE Versions till IE8.

Please help us to find out a way to make it work in IE9.

Upvotes: 2

Views: 21854

Answers (1)

Dexter
Dexter

Reputation: 18452

The first thing to do is upgrade to the latest version of jQuery - it looks like you're currently using jQuery v1.4, but IE9 support was only introduced in v1.5.1.

Update: if the IE9 Developer Tools don't reveal any script errors, and the code is still not displaying properly for you, you can always force IE to render your website in IE8 mode. Add the following meta tag between the <head> tags on every page which contains the slide show:

<meta http-equiv="X-UA-Compatible" content="IE=8" >

Upvotes: 8

Related Questions