Skip to content

Instantly share code, notes, and snippets.

@Kcko
Created May 3, 2014 11:06
Show Gist options
  • Save Kcko/8d0cc66ff229da63b3a9 to your computer and use it in GitHub Desktop.
Save Kcko/8d0cc66ff229da63b3a9 to your computer and use it in GitHub Desktop.
Sticky navigation using jquery (sticky after viewport is overhead...)
$(document).ready(function () {
var aboveHeight = $('#topContainer').outerHeight();
$(window).scroll(function () {
if ($(window).scrollTop() > aboveHeight) {
$('#menu').addClass('fixed').css('top', '0').next()
.css('padding-top', '50px');
} else {
$('#menu').removeClass('fixed').next()
.css('padding-top', '0');
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment