my Question is, how can i trigger (simulate or something esle) an on scroll event. In my special case I don\'t want to load all the Conservations in LinkedIn by scolling down al
Sometimes you need find the scrollElement. In my case, my scrollElement is body and running on mobile, so below code works fine:
document.body.scrollTo(window.scrollX, window.scrollY + 1);
Hope it will be helpful.