jQuery(document).ready(function(){ jQuery(window).resize(function() {if (jQuery(window).width() > -10) {jQuery('#menu_resize').hide();}}); }); jQuery(document).ready(function() { var t = jQuery('#sub_sidenav'); var s = jQuery('#sidenav_container'); var sidenav_width = t.width(); s.css({'maxWidth': sidenav_width}); var pos_s = s.position(); var pos_s_top = pos_s.top + 100; jQuery(window).resize(function() { sidenav_width = t.width(); s.css({'maxWidth': sidenav_width}); }); jQuery(window).scroll(function() { var windowpos = jQuery(window).scrollTop(); if (windowpos >= pos_s_top) { s.addClass('stick'); } else { s.removeClass('stick'); } }); });