let's assume i have a div element, with static height and width
<div style="height: 500px; width: 300px;" id="scrollable">
how can i fix the moment, when mouse scrolls up on this div?
is there something like
$("#scrollable").scrollup(function()
{
console.log("scrolled");//???
});
Thanks
Update:
i'm sorry for not clearly asked question, but as mentioned in the comment,
i need a event that detects mouse wheel movement, up and down.is it possible?