$(function () { $('.menu > ul > li:has( > ul)').addclass('menu-dropdown-icon'); $('.menu > ul > li > ul:not(:has(ul))').addclass('normal-sub'); $('.menu > ul').before(''); $('.menu > ul > li').hover(function (e) { if ($(window).width() > 768) { $(this).children('ul').stop(true, false).fadein(150); e.preventdefault(); } }, function (e) { if ($(window).width() > 768) { $(this).children('ul').stop(true, false).fadeout(150); e.preventdefault(); } }); $('.menu > ul > li').click(function (e) { if ($(window).width() <= 768) { $(this).children('ul').fadetoggle(150); // e.preventdefault() } }); $('.menu-mobile').click(function (e) { $('.menu > ul').toggleclass('show-on-mobile'); e.preventdefault(); }); $('#select-language').on('click', function () { $('#versions').toggle(); }); $('.tabs > li').hover(function (e) { if ($(window).width() > 768) { $(this).children('ul').stop(true, false).fadein(150); e.preventdefault(); } }, function (e) { if ($(window).width() > 768) { $(this).children('ul').stop(true, false).fadeout(150); e.preventdefault(); } }); $('.tabs > li').click(function (e) { if ($(window).width() <= 768) { $(this).children('ul').fadetoggle(150); // e.preventdefault() } }); });