I have a button with the id #calendly-scroll
.
When the button is clicked it scrolls the page down 150px, only on the mobile screens.
It works fine on Chrome and Firefox mobile browsers.
it does not work on Safari mobile.
if(window.outerWidth < 425) {
$(document).ready(function() {
$("#calendly-scroll").click(function(event){
$('html, body').animate({scrollTop: '+=150px'}, 800);
});
});
}