programmatically scroll instagram followers window using javascript -


i'm trying scroll followers/following div programmatically on instagram. thought same or similar standard way of scrolling using javascript.

what have tried far:

var x = document.getelementsbyclassname("_4gt3b"); x.scrolltop += 100; 

i've tried:

x.scrollby(0,100); 

the followers window not scroll. scrolltop variable returns nan, , scrollby function returns x.scrollby not function(…). guidance scroll followers/following window appreciated.

try this? x[ 0 ].scrolltop += 100

good luck!


Comments

Popular posts from this blog

java - Static nested class instance -

c# - Bluetooth LE CanUpdate Characteristic property -

JavaScript - Replace variable from string in all occurrences -