Tuesday, August 14, 2012

Solve : jQuery.easing [jQuery.easing.def] is not a function

How to solve  jQuery.easing [jQuery.easing.def] is not a function problem ?

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

Solution :

$(document).ready(function() {
 
 /* Your 
Code
Here.. */
 
 });
 
 

No comments:

Post a Comment