How can I automatically scroll back to the position of the button after submitting my form?
function scrollToButtonPosition(x,y){
window.scrollTo(x,y);
}
How do i call this function and pass the current scroll coordinates when i click the submit button?