Is there a way to trigger a scroll wheel event with an arbitrary delta. Just like jQuery does with \'click\' like:
$(\'#selector\').trigger(\'click\');
Hi you can do that by adding a event listener. I have searched for the same and got the below code snippet and it is working. check you have the same requirement
Mouse Scroll Wheel example in JavaScript
Scroll mouse wheel to move this DIV up and down.
Event Affect
------------------------------------------------------------
based on the delta variable you can write your own custom functionality.
In html 5 mouse scroll event is being handled you can try in that way also