I am having an issue in a theme that I am working on and I don't see how to fix it. The theme has a few jquery scripts that it needs loaded into the head in order to work. Without all of them, the theme fails. Here are the ones I am calling
jquery-1.8.2.min.js jquery-1.6.1.min.js jquery.easing.1.3.js jquery-ui-1.8.11.custom.min.js jquery-ui-1.8.21.custom.min.js
now with WordPress, I thought that you could just enqueue jquery and all the versions would be loaded. My problem is that when I try that and remove those scripts above, it all fails. I am enqueueing all the scripts in the functions.php file. I have noticed that when I load some plugins, it also breaks the theme so I am trying to figure out how to get it working so that plugins won't make it crash.
all of my scripts are called like so
$(function($){
$(document).ready(function() {
});
});
am I missing something?
jQuery(function($) { $(document).ready(function() { ......}); });