Custom Snippet

Use this tool to share WordPress snippets with the community.

  Save Snippet
/* scroll to Section */
(function($){
  $(window).load(function() {
    $('html, body').animate({
      scrollTop: $('#section').offset().top - 100 }, 1000);
  });
})(jQuery);