This can be tested here: http://jsfiddle.net/rGECn/2/
Is there a workaround for this issue available?
UPDATE 1:
transitionend in window returns false.
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.
You’re missing some vendor prefixes in the CSS.
According to this compat table,
transitions are only supported in IE10 so I’d suggest using jQuery’sanimatemethod for a cross-browser solution:Fiddle
Remove the
.stop(true)if you want to queue up animations instead of breaking them when users click while it is animating.