#onMount scroll to page bottom not working?

3 messages · Page 1 of 1 (latest)

honest heath
#

The problem is that the DOM is mounted, but the layout may not be calculated completely, so the scrollHeight of the body might not be set yet. Just wrap the scrollTo in window.requestAnimationFrame(() => ...)

#

happy to help.

#

This is one of the occasions where the incredible performance of Solid.js becomes a problem...