Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › AUTOPOPULATE + CUSTOM POST › Reply To: AUTOPOPULATE + CUSTOM POST
March 27, 2019 at 11:48 am
#21832
Keymaster
I am not sure why. Maybe try this variation:
add_action('wp_footer', 'asp_scroll_to_nav_top');
function asp_scroll_to_nav_top() {
?>
<script>
jQuery(function($){
$('.asp_r').on('click touchstart touchend', '.asp_navigation *', function(e){
var stop = $(this).closest('.asp_r').offset().top - 20;
if ( $('html').scrollTop() > stop ) {
$('html').animate({
"scrollTop": stop
}, {
duration: 500
});
}
});
});
</script>
<?php
}