I have a site using a "widget" (from http://healcode.com) that includes the scriptaculous (http://script.aculo.us/) javascript library. Problem is that the site I'm building is on WordPress so there's the classic jQuery vs scriptaculous conflict.
I know that I need to run jQuery in .noConflict() mode but I must be getting the syntax wrong.
When I assign the $ to jQuery .noConflict as follows, it still shuts down the scriptaculous functions:
var $ = jQuery.noConflict();
$(document).ready(function () {
//#nav-main dropdown effects
$('#nav-main ul li').hoverIntent(function () {
$(this).find('.dropdown').stop(true,true).slideDown('900'); },
function(){
$(this).find('.dropdown').stop(true,true).slideUp('500');
});
}); // end document.ready
I know that I am assigning the $ to jQuery in .noConflict() mode and I assume that scriptaculous (which loads via a widget in the main body, therefore AFTER jQuery) is trying to re-assign the $ back to scriptaculous.
How can I assign the $ to jQuery in a way that the later-loaded scriptaculous library won't conflict? I've already tried, the following with no success (the following code causes scritaculous to work, but jQuery to fail):
jQuery(document).ready(function () {
//#nav-main dropdown effects
jQuery('#nav-main ul li').hoverIntent(function () {
jQuery(this).find('.dropdown').stop(true,true).slideDown('900'); },
function(){
jQuery(this).find('.dropdown').stop(true,true).slideUp('500');
});
}); // end document.ready
EDIT
The debug console output for the above code is:
Uncaught TypeError: Object #<HTMLDocument> has no method 'ready' (anonymous function) so the document.ready fails because it's assigned to jQuery, which is somehow not loading properly...
EDIT 2
Can anyone offer other insights? Both of the 2 (at the time of this update) answers posted below do nothing to address the issue I'm struggling with. Perhaps they are technically correct, but they do not address my issue.
EDIT 3
This has finally been solved, scroll to my answer to find out how...