Это мой Jquery для отображения меню:
Код: Выделить всё
$(document).ready(function() {
$('.megamenu').hover(
function(){
$(this).addClass('show');
$(this).closest('.dropdown-menu').first().stop(true, true).slideToggle();
},
function(){ $(this).removeClass('show') }
);
});
Подробнее здесь: https://stackoverflow.com/questions/653 ... ith-jquery
Мобильная версия