Error: jQuery.easing [jQuery.easing.def] is not a function
Is caused when JQuery javascript doesn’t load before the plugin js. To fix it, you just need to go into the jquery.easing.1.3.js file and wrap it with
- $(document).ready(function() {
- ...
- });
$(document).ready(function() {
...
});







6 Responses to “jQuery.easing [jQuery.easing.def] is not a function”