$('header nav > ul').materialmenu({mobileWidth: 1024}); var width = document.body.clientWidth; $('.nav li.dropdown').mouseover(function() { if(width>1024){ $(this).addClass('open'); } }).mouseout(function() { if(width>1024){ $(this).removeClass('open'); } }).click(function() { if(width>1024){ var href = $(this).find('.dropdown-toggle').attr('href'); window.location.href = href; }else{ if($(this).hasClass('open')){ $(this).addClass('open'); }else{ $(this).removeClass('open'); } } });