angelorigo's avatar

Scroll to result list after form submit with vue

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);
            });
    });
0 likes
1 reply

Please or to participate in this conversation.