$(window).on('resize',function() {
if ($(window).width() > 768 {
$('ul#main-menu li').mouseenter(function () {
$('ul.sub-menu', this).stop().delay(300).fadeIn(150);
}).mouseleave(function () {
$('ul.sub-menu', this).stop().hide();
});
}
else{
// smaller than 768px
}
});