DEV Community

Jatinder Singh
Jatinder Singh

Posted on

How to reach to dev.to footer?

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)

Collapse
 
imkleats profile image
Ian Kleats

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.

Collapse
 
jsbimra profile image
Jatinder Singh

haha Good one! Home page needs to be more UX flexible.

Collapse
 
imkleats profile image
Ian Kleats

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.

Thread Thread
 
jsbimra profile image
Jatinder Singh

Will check for that point if it's fixable on beign reached and try to contribute to open forem.

Collapse
 
thebtm profile image
Brad

Open Dev Tools, find the <main> and add the style Display: none in google chromes element.style. Then the footer will be easily accessed :P

Collapse
 
jsbimra profile image
Jatinder Singh

oh while after writing of this post i could able to reach the footer but on home page seems tough job ;)