moslem,
window.onresize = function(){
if(this.innerWidth < 1060 && window.innerWidth){
if( !$('.fly-container').find('.mobile-menu').length ){
$('.fly-container').append('<div class="mobile-menu"></div>');
}
}
else if(this.innerWidth > 1060 && window.innerWidth){
$('.ht-nav li').hover(function(){
$(this).addClass('is-active');
$(this).find('.nav-dropdown').stop(true,true).fadeIn('300');
}, function(){
$(this).removeClass('is-active');
$(this).find('.nav-dropdown').fadeOut('300');
});
$('.fly-container').find('.mobile-menu').remove();
}
};