Показать сообщение отдельно
  #5 (permalink)  
Старый 21.02.2019, 00:19
Новичок на форуме
Отправить личное сообщение для Thai1 Посмотреть профиль Найти все сообщения от Thai1
 
Регистрация: 20.02.2019
Сообщений: 3

Сообщение от laimas Посмотреть сообщение
$(document).ready(function(){
        $('.dropdown').on('click', function() {
            if ($(this).hasClass('open')) {
                $(this).children('ul').attr('style', '');
                $(this).removeClass('open');
            } else {
                $(this).children('ul').attr('style', 'display:block;');
                $(this).addClass('open');
            }
            return false;
        });
        $('.dropdown a').on('click', function() {
            window.location = $(this).attr('href');
        });
        $('li.dropdown > a').attr('style', 'width: 80%;');
        $('.menu li').attr('style', 'background: #36404b;');
        $('.dropdown li').attr('style', 'background: #36404b;');

       $('.dropdown.active').trigger('click');
});
Спасибо!)
Ответить с цитированием