Jump to the bottom of the page with jQuery - Without animation

javascript, jquery

Solution

This will do

$('html, body').scrollTop( $(document).height() );

`scrollTop( vHeight );`

Problem

How can I jump to the bottom of the page with jQuery? I don't want a smoother animation, just to 'jump'. All the other questions on this site I found seem to involve an animation.

Original source

Related problems