jquery - Why are there no mousewheel events fired in Edge when using a Surface Pro 3 Type Cover -


i'm not getting mousewheel events in microsoft edge when scrolling overflown div surface pro 3 type cover. edge bug?

demo: http://jsfiddle.net/achqzgll/10/

$(document).ready(function(){     $("#scroll").on("mousewheel wheel", function(){         alert("scroll");     });  }); 


Comments