Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IE problems #8

Closed
okstaticzero opened this issue Dec 20, 2011 · 1 comment
Closed

IE problems #8

okstaticzero opened this issue Dec 20, 2011 · 1 comment
Milestone

Comments

@okstaticzero
Copy link

IE 8 throws an error that says "Object doesn't support this property or method" line 360.
IE 9 jumps immediately to the end of the transition. Can it be made to fallback on jQuery's animate method ?

@rstacruz
Copy link
Owner

An IE8 error is definitely a bug (I swear I've tested it and made sure it doesn't throw errors, I'll check again).

Jumping immediately to the end of the transition is the intended behavior. The most common use of transit is to animate transformations (rotate, skew, etc) -- which cannot be $.fn.animate'd.

If you want to fallback to jQuery's .animate method, use:

if (!$.support.transition)
    $.fn.transition = $.fn.animate;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants