How to trigger an on scroll event without scrolling
问题 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 all conservations, because there are too many! I do not need a PHP or Javascript solution. Simply using dev-tools at chrome is enough to get my goal. 回答1: Alternatively, you can manually trigger a real scroll event as following: el.dispatchEvent(new CustomEvent('scroll')) Which feels a bit less of a hack (and more