Jump to content

Featured Replies

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

Link to comment
https://ipbmafia.ru/topic/9754-konflikt-ipb-s-jquery/
Share on other sites

Разобрался.

Кому интересно:

_litecode.ru/javascript/prototype_vs_jquery.shtml

Link to comment
https://ipbmafia.ru/topic/9754-konflikt-ipb-s-jquery/?&do=findComment&comment=74760
Share on other sites

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.