Today here i am showing very simple five lines code using that code you can create your own sticky side while any one scrolling page up and down of your website.
If you want make the right sidebar fixed and go up when you scroll down over your right sidebar and the sidebar will go up like STICKY. If you don’t want use a plugin. Then this is for you its very simple and clean code for sticky side bar on page scroll.
Most of website using this featur while you scrolling up sidebar fixed on top of the page and while scroll down side bar on respective position.
<div class="rightSidebar"> <h2>Today here i am showing very simple five lines code using that code you can create your own sticky side while any one scrolling page up and down of your website. If you want make the right sidebar fixed and go up when you scroll down over your right sidebar and the sidebar will go up like STICKY. If you don't want use a plugin. Then this is for you its very simple and clean code for sticky side bar on page scroll. Most of website using this featur while you scrolling up sidebar fixed on top of the page and while scroll down side bar on respective position.</h2> </div>
<style>
.rightSidebar{
width:400px;
border:1px solid #000000;
padding:10px;
}
.stickyRightSidebar{
position: fixed;
background: #fff;
z-index: 99;
top: 0px;
}
@media (max-width:992px)
{
.stickyRightSidebar{
position: relative;
background: #fff;
z-index: 99;
top: 0px;
}
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <script> jQuery(function () { var rightSidebar = jQuery('.rightSidebar'); var top = rightSidebar.offset().top - parseFloat(rightSidebar.css('margin-top')); jQuery(window).scroll(function (event) { var y = jQuery(this).scrollTop(); if (y >= top) { rightSidebar.addClass('stickyRightSidebar'); } else { rightSidebar.removeClass('stickyRightSidebar'); } }); }); </script>
My name is Mukesh Jakhar and I am a Web Application Developer and Software Developer, currently living in Jaipur, India. I have a Master of Computer Application in Computer Science from JNU Jaipur University. I loves to write on technology and programming topics. Apart from this, I love to travel and enjoy the beauty of nature.