When using other javascript libraries such as prototype, one needs to use jQuery.noConfict(); to make sure that the other library can continue to function. In this case, the other library uses the $ variable, and jquery will use the jQuery variable.

The solution is to use something like this:

(function($) {
//jquery code using $ here
});
})(jQuery);

I can try submitting a patch if that helps.

Comments

hass’s picture

Status: Active » Closed (works as designed)

Like core... Fixed in D7