Is there a way using jQuery that I can slide to the bottom of the page I'm in now? Thanks.
You can check out the following article :
$('#scrlBotm').click(function () { $('html, body').animate({ scrollTop: $(document).height() }, 1500); return false; });
you can use this code.
$('html, body').animate({scrollTop: $("body").height()}, 800);
You can do it:
$(document).scrollTop($(document).height());
If you want to click it:
$('#btn').click(function() { $(document).scrollTop($(document).height()); });
See demo 1 and demo 2
Source: https://habr.com/ru/post/1345458/More articles:Receive real-time updates from Facebook groups? - facebookError highlighting - Visual Studio Express 2010 (C ++) - visual-studio-2010ASP.NET MVC search should redirect to result or results - asp.net-mvcHow to determine the "Alt +" click, correctly and reliably? - javalong list of javascript options; looking for an alternative - javascriptZend Framework plugins and helpers - additional information - zend-frameworkASP MVC 3 multi-line editing support - asp.net-mvcHow to make Custom Dialog look like Alert Dialog? - androidJava Guassian Distribution-Bell Curve - javaIs it possible to vectorize multiplication in VC ++ without SSE4? - x86All Articles