jquery scrolY code example
Example 1: scrool to top jquerry
$("a[href='#top']").click(function() {
$("html, body").animate({ scrollTop: 0 }, "slow");
return false;
});
Example 2: jquery on wheel event
$("#main-div" ).on( 'wheel', function() {
alert("Hello! I am an alert box!!");
});