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
window.scrollTo(window.scrollX, window.scrollY);
is not working for me in Firefox.
Nothing happens, and it seems to be because no scrolling actually needs to be performed to go to the place where you allready are.
BUT window.scrollTo(window.scrollX, window.scrollY-1);
is working. By this command the window.scroll
event function is fired.
(Trying to cheat by for instance:
window.scrollTo(window.scrollX, window.scrollY-0)
is not working either.)