HTML
<div class="wrapper"><div class="abs" id="sidebar"></div></div>
CSS
.abs { position: absolute; } .fixed { position: fixed; top: 30px !important;} #sidebar { top: 150px; left: 0; height: 100px; width: 20px; background-color: #ccc;} .wrapper { height: 1500px; padding: 20px;}
JQuery
$(document).scroll(function() { var scrollPosition = $(document).scrollTop(); var scrollReference = 10; if (scrollPosition >= scrollReference) { $("#sidebar").addClass('fixed'); } else { $("#sidebar").removeClass('fixed'); $("#sidebar").addClass('abs'); }; });
DEMO of this code:
http://jsfiddle.net/B3jZ5/6/
<div class="wrapper">
- sample content.
source share