Little help for pagination

Hi, I’m trying to scroll the page to top when a user click on pagination elements of wp bakery post grid.

I have tries some js snippets, but nothig works.

Can you give me a little help to use the right code for this purpose?

The page: https://www.lifefranca.eu/it/eventi-news/

Thanks so much

Hi there,

Thanks for writing in.

All you need is this little snippet :slight_smile: , please add this code to your custom javascript.

jQuery ( function($) {

$( document ).on('click', '.vc_grid-owl-nav', function() {

$('html, body').stop().animate( { scrollTop : $('.vc_grid-container-wrapper').offset().top } );

} );

} );

Cheers!

Works like a charme! Thank you very much

You’re welcome.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.