Skip to content

Instantly share code, notes, and snippets.

@zexeder
Created April 14, 2015 09:52
Show Gist options
  • Save zexeder/c51931328c1fd005143b to your computer and use it in GitHub Desktop.
Save zexeder/c51931328c1fd005143b to your computer and use it in GitHub Desktop.
Фиксированное меню WP
//Fixed menu
$(function(){
$(window).scroll(function() {
var top = $(document).scrollTop();
if (top < 100) $("#navigation").css({top: '0', position: 'relative'});
else $("#navigation").css({top: '0', position: 'fixed'});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment