How can I make my website automatically scroll to the middle of the page or to a specific div located in the middle of the page when viewed on a mobile device?
I have attempted the following code, but it is not functioning and throwing an error:
if ($(window).width() < 900) {
function scrollToElement(myid) {
$(window).scrollTop(ele.offset().top).scrollLeft(ele.offset().left);
}
}
What mistake am I making in my code?