I'm using Interface Elements jQuery plugin to have some extended animation functions that I need, some are working, ie: $ (this).animate({ color: '#ff0000' }, 200);, some are not.
I don't have full javascript interface.js file included, only the ifx.js. However, I tried to include ifx.js + easing.js and also interface.js without any other interface js file cause this one has everything. However, none of them worked with the following code: $('div#cpblock').animate({opacity: "hide"}, 3000); The element is hidden after 3secs but I don't see it fading out. The error from Firebug is this: jQuery.easing[options.easing] is not a function http://localhost/scripts/Administratio/scripts/jquery.js Line 2454 What's the problem? Why does A work and B doesn't? A: $(this).animate({ color: '#ff0000' }, 200); B: $('div#cpblock').animate({opacity: "hide"}, 3000);