// JavaScript Document $(window).scroll(function(e){ $el = $('.fixedElement'); if ($(this).scrollTop() > 100 && $el.css('position') != 'fixed'){ $('.fixedElement').css({'position': 'fixed', 'top': '0px'}); } });