Side Navigation

Stick Div On Scroll

Stick the navigation div or any div on scroll.


<script>

$(window).scroll(function(e){ 

 var $el = $('.u_1121664114'); //DIV CLASS TO STICK

 var isPositionFixed = ($el.css('position') == 'fixed');

 if ($(this).scrollTop() > 200 && !isPositionFixed){ //200 PIXEL HEIGHT FROM TOP

  $el.css({'position': 'fixed', 'top': '0px', 'width': '100%', 'z-index': '999'});

 }

 if ($(this).scrollTop() < 200 && isPositionFixed){ //200 PIXEL HEIGHT FROM TOP

  $el.css({'position': 'relative'}); 

 } 

});

</script>