Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

I am getting below error when I look in the console:

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

I am trying to make a slider on WordPress. I am working on a localhost so I can't exactly show whats up. However, when the slider is just in an HTML file outside of WordPress it works. When in WordPress, it is giving me that error. Any insight into what the problem could be will be greatly appreciated.

like image 236
Eric Goncalves Avatar asked Jul 18 '12 01:07

Eric Goncalves


1 Answers

To save everyone some time. Open your Jquery easing plugin file and wrap the code inside:

$(document).ready(function() {   Code goes here... }); 
like image 193
coletrain Avatar answered Sep 18 '22 05:09

coletrain