LeoLopesWeb
10/17/2018 - 9:45 PM

sticky

<script>
    $(window).load(function(){
			var height = $('#footer').height();
			$(".sticky-form").sticky({ topSpacing: 90, bottomSpacing: height + 60 });
			if(window.innerWidth < 550)	{
				$(".sticky-form").unstick();
			}
		});
</script>