Wheel Events

by mlhDevelopment

HTML

<var></var>

JavaScript

$(document).on("mousewheel", function() {
    var html = $("var").html();
    $("var").html(html + "<br />mousewheel");
});
// /* // Comment out the wheel statement and check out Chrome
$(document).on("wheel", function() {
    var html = $("var").html();
    $("var").html(html + "<br />wheel");
});
// */
$(document).on("DOMMouseScroll", function() {
    var html = $("var").html();
    $("var").html(html + "<br />DOMMouseScroll");
});