I'm getting the following error
TypeError: jQuery.easing[this.easing] is not a function
percent, this.options.duration * percent, 0, 1, this.options.duration
The code block from jQuery is
run: function( percent ) {
var eased,
hooks = Tween.propHooks[ this.prop ];
if ( this.options.duration ) {
this.pos = eased = jQuery.easing[ this.easing ](
percent, this.options.duration * percent, 0, 1, this.options.duration
);
}
...
I attempted to include the jQuery UI (Customized download). Customized with selecting of "Effects Core" only, Which included easing.
<script src="/jquery-1.10.2.js"></script>
<script src="/jquery-ui-1.10.4.custom.min.js"></script>
I'm still getting the same ERROR!