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
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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’)