Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kirandash/38283cf2602bb1f9d447c55d027ab5c6 to your computer and use it in GitHub Desktop.
Save kirandash/38283cf2602bb1f9d447c55d027ab5c6 to your computer and use it in GitHub Desktop.
jQuery(window).scroll(function(){
var top = jQuery(document).scrollTop();
var batas = jQuery(window).height();
//alert(batas);
if(top > batas) {
jQuery('.unfixed-menu').addClass('show-fixed-menu');
} else {
jQuery('.unfixed-menu').removeClass('show-fixed-menu');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment