jQuery isn’t necessary. Most of the top results I got from a Google search gave me this answer:
window.scrollTo(0,document.body.scrollHeight);
Where you have nested elements, the document might not scroll. In this case, you need to target the element that scrolls and use it’s scroll height instead.
window.scrollTo(0,document.querySelector(".scrollingContainer").scrollHeight);
You can tie that to the onclick
event of your question (i.e. <div onclick="ScrollToBottom()" ...
).
Some additional sources you can take a look at:
- http://www.sourcetricks.com/2010/07/javascript-scroll-to-bottom-of-page.html
- http://www.alecjacobson.com/weblog/?p=753
- http://www.mediacollege.com/internet/javascript/page/scroll.html
- http://www.electrictoolbox.com/jquery-scroll-bottom/
Related Posts:
- Scroll to an element with jQuery
- Scroll to an element with jQuery
- How to disable scrolling temporarily?
- How to scroll an HTML page to a given anchor
- jQuery scrollTop() method not working
- How to scroll to top of page with JavaScript/jQuery?
- How do I redirect to another webpage?
- Uncaught ReferenceError: jQuery is not defined [duplicate]
- How do I check whether a checkbox is checked in jQuery?
- syntax error: unexpected token <
- Error OPTIONS net::ERR_CONNECTION_REFUSED
- Uncaught ReferenceError: jQuery is not defined [duplicate]
- JQuery – $ is not defined
- Cannot read property ‘push’ of undefined when combining arrays
- Download File Using JavaScript/jQuery
- Disabling and enabling a html input button
- Check if checkbox is checked with jQuery
- How can I get the data-id attribute?
- document.getElementById vs jQuery $()
- How to import jquery using ES6 syntax?
- How to filter an array/object by checking multiple values
- Uncaught SyntaxError: Invalid or unexpected token
- Infinite Scrolling in Asp.Net MVC with jQuery / AJAX Issues
- What are the difference between $(document).bind(‘ready’, function) and $(document).ready(function() {})
- How to use php code in javascript
- Adding images to a Bootstrap Carousel with AJAX
- How to read xml file contents in jQuery and display in html elements?
- How can I print using JQuery
- Unable to preventDefault inside passive event listener
- Loading local JSON file
- jQuery $.cookie is not a function
- How to check all checkboxes using jQuery?
- Setting background-image using jQuery CSS property
- Uncaught TypeError: Cannot read property ‘msie’ of undefined – jQuery tools
- keycode 13 is for which key
- How to update array value javascript?
- Equivalent of jQuery .hide() to set visibility: hidden
- How can I get the last character in a string?
- Uncaught TypeError: Cannot read property ‘name’ of undefined
- TypeError: $(…).DataTable is not a function
- jQuery explode string like PHP
- Validate date in dd/mm/yyyy format using JQuery Validate
- Dynamically load JS inside JS
- Simulate Keypress With jQuery
- Adding options to a
- How to add an object to an array
- jQuery Ajax POST example with PHP
- Setting and getting localStorage with jQuery
- this vs $(this)
- Javascript isnull
- Set value to currency in
- How to open a URL in a new Tab using JavaScript or jQuery?
- Uncaught TypeError: Cannot read property ‘toUpperCase’ of undefined
- SyntaxError: JSON.parse: unexpected character at line 1 column 1 of the JSON data
- HTML Entity Decode
- jQuery remove options from select
- Extract hostname name from string
- jquery beforeunload when closing (not leaving) the page?
- how to get the value of a textarea in jquery?
- How do I pass the this context to a function?
- Escaping HTML strings with jQuery
- How to use z-index in svg elements?
- Why define an anonymous function and pass it jQuery as the argument?
- What is the best way to detect a mobile device?
- How to filter JSON Data in JavaScript or jQuery?
- Get querystring from URL using jQuery [duplicate]
- jQuery checkbox change and click event
- jQuery selectors on custom data attributes using HTML5
- How do I refresh a DIV content?
- TypeError: abc.getAttribute is not a function
- jQuery sort elements using data id
- How to fire an event on class change using jQuery?
- Uncaught SyntaxError: Unexpected token with JSON.parse
- TypeError getElementsByTagName is not a function issue
- How to open a Bootstrap modal window using jQuery?
- window.location.replace() not working to redirect browser
- How to check if the URL contains a given string?
- Check if url contains string with JQuery
- jquery to validate phone number
- Closing Bootstrap modal onclick
- stopPropagation vs. stopImmediatePropagation
- What’s a Good Javascript Time Picker?
- Ajax success function
- How can I exit from a javascript function? [duplicate]
- Cannot read property ‘preventDefault’ of undefined in javascript error
- Object doesn’t support property or method ‘addEventListener’
- How to fix javascript .toFixed is not a Function error
- jQuery checkbox checked state changed event
- etect the Enter key in a text input field
- WordPress 5.5 – ReferenceError: commonL10n is not defined error
- Jquery function working in Chrome Console but not in the code [closed]
- List of JS Events for Widgets?
- How to set callback to execute after all the tinyMCE editors have been initialized?
- How do I make my wordpress post appear in a mouse hover preview?
- Change each text after 4 second and each image after 2 second
- wp post_tag change minlength
- How to locate the js code and php code for certain function?
- Use one javascript variable into another javascript file
- Styling parent based on a child element of a child in a WordPress page
- Access jQuery tabs from primary menu while adding/removing class on tab container elements (accessing diff. tabs/tab content via primary menu items)