In PS 1.7.6 it might be this:
$(document).ready(() => {
prestashop.on('updateProductList', () => {
let target = $("#wrapper");
if (target.length) {
$('html, body').animate({
scrollTop: target.offset().top
}, 0);
}
});
});
This is taken from @Loboo's solutuon, but I scroll to #wrapper without animation time.