haleonearth
5/18/2018 - 4:14 PM

sticky nav

sticky navigation bar for family first urgent care conroe

setTimeout(function(){
  (function($){
  // When the user scrolls the page, execute myFunction
window.onscroll = function() {myFunction()};

// Get the navbar
var navbar = document.getElementById("nav-stick");
  console.log(navbar);

// Get the offset position of the navbar
var sticky = navbar.offsetTop;

// Add the sticky class to the navbar when you reach its scroll position. Remove "sticky" when you leave the scroll position
function myFunction() {
  if (window.pageYOffset >= sticky) {
    navbar.classList.add("sticky")
  } else {
    navbar.classList.remove("sticky");
  }
}
})(jQuery)
},3000);