jquery/jquery-mousewheel

A jQuery plugin that adds cross-browser mouse wheel support.

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 52 minutes ago
Type:Library / SDKCategory(s):UI Components & Design SystemsWeb Development
Added to GitGenius on September 17th, 2026
Created on October 16th, 2008
Open Issues & Pull Requests: 17 (+0)
GitHub issues: Enabled
Number of forks: 1,630
Total Stargazers: 3,917 (+0)
Total Subscribers: 168 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 1.4 hours
Mean response time: 150.7 days
90th percentile: 901.5 days
Tracked items: 6

Most active contributors

Sign in to see contributor activity.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 2
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 2,316 days
Stale 30+ days: 2
Stale 90+ days: 2

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • Feature (1)

Most active issues this week

No issue events were indexed in the last 7 days.

Detailed Description

jQuery Mouse Wheel is a jQuery plugin that adds cross-browser mouse wheel support with delta normalization.

The plugin solves the problem of inconsistent mouse wheel delta values across different browsers, operating systems, and input devices. When users switch between trackpads and physical mouse wheels, the reported delta values can vary wildly, making it difficult to implement consistent scroll behavior. The plugin normalizes these values to whole numbers starting at plus or minus one and incrementing in steps of plus or minus one based on the force or acceleration applied. It binds to the mousewheel event and updates the event object with normalized deltaX and deltaY properties, along with a deltaFactor property that can be multiplied by the delta values to determine the actual scroll distance the browser reported.

Developers should choose this plugin if they need to handle mouse wheel input consistently across multiple browsers and devices without worrying about platform-specific delta value variations. It suits projects that require custom scroll behavior or mouse wheel-driven interactions beyond standard browser scrolling. The plugin is particularly useful when you need both normalized delta values for consistent behavior and the ability to extract the actual reported scroll distance through the deltaFactor property.

The project maintains basic unit tests as sanity checks, though the maintainers acknowledge these are very basic and welcome improvements. Manual testing across supported browsers using the test file is recommended for comprehensive validation of the plugin's behavior.