Hello World,
How I can reacto dev.to footer when i scroll the page, I see its never ending list of post flooding continuously, can there is any stop for this to see and reach the footer content!? :-)
This is my first post here ;)
Hope you like it.
Top comments (6)
I'm not sure you could interact with it, but (using Chrome developer tools) if you set a DOM breakpoint on
<div id="pagecontent">
for "Break on subtree modifications", it will step into but not execute the load more function, and then you can "Scroll into view" on the footer div. Maybe there's a better answer out there somewhere.haha Good one! Home page needs to be more UX flexible.
Forem is open source, so make a contribution. Could be a simple as modifying the infinite load to trigger on focus + scroll point being reached instead of just the scroll point.
Will check for that point if it's fixable on beign reached and try to contribute to open forem.
Open Dev Tools, find the
<main>
and add the styleDisplay: none
in google chromes element.style. Then the footer will be easily accessed :Poh while after writing of this post i could able to reach the footer but on home page seems tough job ;)