Skip to content

Instantly share code, notes, and snippets.

@DevShahidul
Created July 20, 2017 14:09
Show Gist options
  • Select an option

  • Save DevShahidul/7911a737c06ef5f86782aebaf10c99d4 to your computer and use it in GitHub Desktop.

Select an option

Save DevShahidul/7911a737c06ef5f86782aebaf10c99d4 to your computer and use it in GitHub Desktop.
var $header = $(".header-area"),
$clone = $header.before($header.clone().addClass("fixedTop"));
$(window).on("scroll", function() {
var fromTop = $(window).scrollTop();
$("body").toggleClass("down", (fromTop > 300));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment