Hello my current JavaScript is this, to scroll the page to an id tag further down my website page:
function scroll(element){   
    var ele = document.getElementById(element);  
    window.scrollTo(ele.offsetLeft,ele.offsetTop);
    window.scrollBy(0, -100);
}
How can I make the function scroll smoothly ?
 
     
    