Показать сообщение отдельно
  #4 (permalink)  
Старый 20.02.2019, 23:50
Профессор
Отправить личное сообщение для laimas Посмотреть профиль Найти все сообщения от laimas
 
Регистрация: 14.01.2015
Сообщений: 12,990

$(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');
});
Ответить с цитированием