window.addEventListener(mousewheelEvent, _.throttle(parallaxScroll, 60), false);
I have an event listener that listens to a mousewheelEvent to trigger a function, yet trying to trigger that function directly (on a different page, using react) will invariably only pass a mouseclick event. What's something I can listen to via DOM to trigger the function as a mousewheelEvent when someone onclicks a button?