Several of my pages use both JQuery and Protoype. Since I upgraded to version 1.3 of JQuery this appears to be causing problems, because both libraries define a function nam
This solution worked fine:
jQuery.noConflict(); var $j = jQuery;
Now use $j in place of $ for your jQuery code, like:
$j
$
$j(document).ready(function() { $j('#div_id').innerfade({ // some stuff }); });