I'm not a developer and having a hard time troubleshooting a problem with my website. I have a few jQuery effects on various navigation buttons, and it looks great. But as soon as I install a large feature by a developer, I lose the effects. Sometimes it appears to disable all javascipt, but right now it just appears to be the jQuery, as my dhtml menu is opening dynamically.
I don't know where to start troubleshooting.
The contents of my jq_cust.js file:
// from http://drupal.org/node/171213
// Using the closure to map jQuery to $.
(function ($) {
// Store our function as a property of Drupal.behaviors.
Drupal.behaviors.mytestfade = {
attach: function (context, settings) {
// Do something
$("#block-menu-block-8 .menu-block-8 > ul > li").hover(
function () {
$(this).addClass("hoverme");
},
function () {
$(this).removeClass("hoverme");
}
);
}
}
}(jQuery));
(function ($) {
// Store our function as a property of Drupal.behaviors.
Drupal.behaviors.animMenu = {
attach: function (context, settings) {
// Background color animation
$("li#dhtml_menu-436 a").hover(function() {
$(this).animate({ backgroundColor: "#993366" }, 400);
},function() {
$(this).animate({ backgroundColor: "#333333" }, "fast");
});
$("li#dhtml_menu-437 a").hover(function() {