Answer the question
In order to leave comments, you need to log in
How to go to the first posts on Instagram?
Good day. You need to scroll to the first entries of the inst account (and it has more than 20k posts).
Please tell me how to scroll right to the end?
Answer the question
In order to leave comments, you need to log in
Run and forget for N hours
const state = {
needsUpdate: true,
};
const update = () => {
window.scrollTo(0, Number.MAX_SAFE_INTEGER);
};
const interval = window.setInterval(() => {
if (state.needsUpdate) {
update();
}
else {
window.clearInterval(interval);
}
}, 50);
state.needsUpdate = false; // остановить безобразие
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question