Posted 25 ноября, 201410 yr Всем известен конфликт IPB и jQuery. IPB использует свою библиотеку prototype. Есть код: <script> $(document).ready(function () { $('#inbox_link').click(function (e) { $(this).toggleClass('active'); $('#user_inbox_link_menucontent').toggle(); e.stopPropagation(); }); $('body').click(function () { var link = $('#inbox_link'); if (link.hasClass('active')) { link.click(); } }); }); </script> Который позволяет при нажатии на один блок показать другой. Подключая : <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script> открытие моих двух блоков работает. А остальные функции ИПБ нет. Не могли бы вы помочь мне исправить этот конфликт? Помогите, пожалуйста, переписать под prototype Edited 25 ноября, 201410 yr by KEVINm
25 ноября, 201410 yr Author Разобрался. Кому интересно: _litecode.ru/javascript/prototype_vs_jquery.shtml
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.