Level 1
You need to use pure JS. Something like here: http://stackoverflow.com/questions/8917921/cross-browser-javascript-not-jquery-scroll-to-top-animation
Hi
I have a form with many fields and would like to scroll to the result list, just below the form fields, after the form submission.
How can it be done with Vue ?
I try with Jquery but did not work :
$(document).ready(function (){
$('#form').submit(function(){
$('html, body').animate({
scrollTop: $("#table-list").offset().top
}, 1000);
});
});
Please or to participate in this conversation.