Skip to content

Instantly share code, notes, and snippets.

@solanako
solanako / elementor-hide-section-scroll.html
Created July 1, 2019 17:05
Elementor sticky section hide when scrolling down
<!--Add a html widget with this code under your section and replace the getElementById ("your ID section") with the ID of your section.-->
<script>
var prevScrollpos = window.pageYOffset;
window.onscroll = function() {
var currentScrollPos = window.pageYOffset;
if (prevScrollpos > currentScrollPos) {
document.getElementById("navbar").style.top = "0";
} else {
document.getElementById("navbar").style.top = "-90px";
}