$(function() { var elem = $("#fixed"), h = elem.offset().top ; $(window).scroll(function(){ var top = $(this).scrollTop(); elem.css( {'top': top> h ? 20 : '', 'position': top > h ? 'fixed' : ''})}) });