Last active
January 12, 2016 03:03
-
-
Save phucdohong96/f0979bdc856f61741156 to your computer and use it in GitHub Desktop.
How to Add Pagination Scrolling
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| (function($) { | |
| $(document).on('facetwp-loaded', function() { | |
| $('html, body').animate({ | |
| scrollTop: $('.facetwp-template').offset().top | |
| }, 500); | |
| }); | |
| })(jQuery); | |
| </script> | |
| /* Pagination Scrolling To Top Of FacetWp */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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