Jump to content

Featured Replies

Posted

Всем известен конфликт 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 by KEVINm

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.

Guest
Ответить в этой теме...

Последние посетители 0

  • No registered users viewing this page.