This is a message.

Mousewheel

The Mousewheel plugin allows you to take control of the mousewheel. For example:

// make #myelement listen for mousewheel events
$("#myelement").mousewheel(function(event, delta) {
 
});

JavaScript

Whenever the mousewheel is used while the mouse point is over the elements specified by the jQuery selector, the supplied callback function is called. It takes two arguments. The first one is the jQuery event object and the second argument specifies how much the wheel was rotated. A positive value for delta means movement downwards and a negative value means movement upwards.

This plugin is based on Three Dub Media's wheel plugin which is a smaller, simplified interpretation of the Brandon Aaron's well-known special event, "Mouse Wheel Extension". Thanks.