The entire left side of my website (http://www.medigapbuyersguide.com/new/) is fixed and scrolls with the screen when scrolling down. I used Jquery for this.
I have two issues;
- The left side won't stop scrolling once it hits the footer (bottom portion).
- When I resize the window, the left side moves out of place.
How do I fix these issues?
Jquery code:
<script>
$(document).ready(function () {
var top = $('#left-menu').offset().top - parseFloat($('#left- menu').css('marginTop').replace(/auto/, 0));
$(window).scroll(function (event) {
// what the y position of the scroll is
var y = $(this).scrollTop();
// whether that's below the form
if (y >= top) {
// if so, ad the fixed class
$('#left-menu').addClass('fixed');
} else {
// otherwise remove it
$('#left-menu').removeClass('fixed');
}
});
});
</script>
CSS:
<style>
#left-menu {
left: 20%;
position: absolute;
margin-left: 40px;
width:290px;
}
#left-menu {
position: absolute;
top: 0;
margin-top: 132px;
padding-top: 19px;
}
#left-menu.fixed {
position: fixed;
top: 0;
}
</style>
Thanks for your time.