I have a .navigation
in the top of the wrapper.
I want to add it a .fixed
class, when the top of the window reached the .bottom
DIV & remove this class when the top of the .bottom
is in the window`s scope (it's a toggling between add and remove .fixed class).
<div id="wrapper">
<div class="navigation">
<!-- There are some list elements here -->
</div>
<div class="bottom"></div>
</div>
It's what I made, but not work
bottom = $('.bottom');
$(window).scroll(function(){
if ($(this).scrollTop() > bottom){
$('.navigation').addClass('fixed');
}
else{
$('.navigation').removeClass('fixed');
}
});