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.
scrollIntoView does not trigger mousewheel nor scroll event in Angular. Bookmark this question.
You can use window. addeventlistener to track the scrolling behavior the webpage and load more content to the page when the user is at the foot of the webpage. document. documentElement.
Definition and Usage. The onscroll event occurs when an element's scrollbar is being scrolled. Tip: use the CSS overflow style property to create a scrollbar for an element.
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 performant) than dual scrolling by +1
and -1
pixels...
This should run any piece of code listening for a scroll
event.
Edit: To support IE11
or other legacy browser, consider using a CustomEvent
polyfill such as mdn-polyfills
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With