Skip to content

Instantly share code, notes, and snippets.

@phucdohong96
Last active January 12, 2016 03:03
Show Gist options
  • Select an option

  • Save phucdohong96/f0979bdc856f61741156 to your computer and use it in GitHub Desktop.

Select an option

Save phucdohong96/f0979bdc856f61741156 to your computer and use it in GitHub Desktop.
How to Add Pagination Scrolling
<script>
(function($) {
$(document).on('facetwp-loaded', function() {
$('html, body').animate({
scrollTop: $('.facetwp-template').offset().top
}, 500);
});
})(jQuery);
</script>
/* Pagination Scrolling To Top Of FacetWp */
<script>
(function($) {
$(document).on('facetwp-loaded', function() {
$('html, body').animate({ scrollTop:0 }, 500);
});
})(jQuery);
</script>
/* Pagination Scrolling To Top Of Page */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment