Skip to content

Instantly share code, notes, and snippets.

@amogower
Created February 19, 2016 17:30
Show Gist options
  • Select an option

  • Save amogower/42cbbb02046410281e83 to your computer and use it in GitHub Desktop.

Select an option

Save amogower/42cbbb02046410281e83 to your computer and use it in GitHub Desktop.
Sticky side bar JS
var $sidebar = $('#sidebar'),
$window = $(window),
offset = $sidebar.offset(),
topPadding = 0;
$window.scroll(function() {
if ($window.scrollTop() > offset.top)
{
$('#sidebar').removeClass('checkout-sidebar');
$('#sidebar').addClass('checkout-sidebar-fixed');
}
else
{
$('#sidebar').removeClass('checkout-sidebar-fixed');
$('#sidebar').addClass('checkout-sidebar');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment