L
L
L1nw0od2021-02-15 15:55:46
JavaScript
L1nw0od, 2021-02-15 15:55:46

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

3 answer(s)
P
profesor08, 2021-02-15
@L1nw0od

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; // остановить безобразие

A
Alexey Yarkov, 2021-02-15
@yarkov

Put something on the PageDown key ))

K
Kovalsky, 2021-02-15
@lazalu68

window.scrollTo(0, Number.MAX_SAFE_INTEGER) until scrollHeight stops changing

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question