I'm trying to get a div following scrolls down the page. It works pretty well but the div is getting stuck at the bottom of the page when i try to scroll too far:
$(function() {
var $sidebar = $("#sidebar"),
$bigPics = $("#bigPics"),
$window = $(window),
offset = $sidebar.offset(),
topPadding = 20,
turnoff = 1;
var documentHeight = $(document).height();
$window.scroll(function() {
if (($window.scrollTop() > offset.top) && (documentHeight - 1200 > parseFloat($sidebar.css("marginTop")))) {
$sidebar.stop().animate({
marginTop: $window.scrollTop() - offset.top + topPadding
});
} else {
$sidebar.stop();
}
});
});
Any ideas on how to make it start again when I scroll back up the page? Cheers in advance
