Tell me what to do? The page has jquery 1.5.2 and prototype 1.7.0.0 installed and they do not agree to work together. I found the following solution on the Internet:

<script type="text/javascript"> $j = jQuery.noConflict();</script> 

But it did not help. Thank you in advance.

    1 answer 1

     jQuery.noConflict(); // Запускаем функцию до jQuery(document).ready() jQuery(document).ready(function($) { // здесь $ будет действовать как алиас jQuery }); // здесь $ будет доступен для других библиотек