• Hello, I would like to know the way to prevent the scrolling of the page to top when I click a button or a submit input.

    Thank you

Viewing 4 replies - 1 through 4 (of 4 total)
  • Following – I need to disable this, too for a short multi-page form with a tall sticky header! I don’t want any scrolling happening anywhere!

    Thread Starter MKay

    (@mongia)

    Hello, is there anybody in there? Just nod if you can hear me.

    Thread Starter MKay

    (@mongia)

    @lexiblack and everyone else got the same problem. I don’t know if this is the right method to prevent page scrolling, but it’s working.

    I put the following snippet in the theme main js file:

    $(document).on( ‘cf.pagenav’, function (event, data) {
    $(‘html, body’).stop();
    } );

    Lexi

    (@lexiblack)

    Thanks, I’ll give that a try!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Prevent page scrolling on button and submit click’ is closed to new replies.