Reputation: 164
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
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