how can I disable mouse a wheel click only in a certain div? I want to use the scroll function normally, but I don't want to switch the cursor to that "quick scroll" when someone clicks the mouse wheel.
I tried this, but it has changed nothing
$(document).on('click', function(e){
if(e.which == 2){
e.preventDefault(); //stop default click action from mousewheel
}
});