submenuTop = function() { if ($(window).width() <= 576) { var top_contentH = $('#top_content').outerHeight(); var top_subH = $('#productformenti_sub').outerHeight(); $('#productformenti_sub').attr('style', 'top: '+top_contentH+'px !important'); $('#productformenti-menu main').attr('style', 'padding-to: '+(top_contentH+top_subH)+'px !important'); } else { $('#productformenti_sub').removeAttr('style'); $('#productformenti-menu main').removeAttr('style'); } } $( window ).on('load', function() { $('[data-search]').on('click', function(event) { event.preventDefault(); $('#searchFull').addClass('open'); $('#searchFull > form > input[type="text"]').focus(); }); $('#searchFull, #searchFull button.close').on('click keyup', function(event) { if (event.target == this || event.currentTarget.className == 'close' || event.keyCode == 27) { $('#searchFull').removeClass('open'); } }); }); $( window ).on('resize submenu', function() { submenuTop(); });