thomas
thomas

Reputation: 164

jQuery only slide 1st div in IE7 / IE8

i want to build a simple div slider with jQuery (example at http://jsfiddle.net/cM5fX/). All works fine in non-ie browsers and ie9. In IE7 and IE8 only the 1st div would be slide, the 2nd one stuck. Whats the problem here?

Greets Thomas

Upvotes: 0

Views: 117

Answers (1)

Yograj Gupta
Yograj Gupta

Reputation: 9869

As you are animating the div which id is "first", it is only apply to it, and other are not repositioning according to first (ie IE 7).

so you can apply animate on $('#slideWrapper') instead of $('#first')

Upvotes: 1

Related Questions