CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Sat, 09 Aug 2025 12:01:49 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100225131102
location: https://web.archive.org/web/20100225131102/https://github.com/brandonaaron/jquery-mousewheel
server-timing: captures_list;dur=0.478927, exclusion.robots;dur=0.016071, exclusion.robots.policy;dur=0.007510, esindex;dur=0.011364, cdx.remote;dur=159.147166, LoadShardBlock;dur=381.673604, PetaboxLoader3.datanode;dur=189.630384, PetaboxLoader3.resolve;dur=123.861594
x-app-server: wwwb-app222
x-ts: 302
x-tr: 593
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app222; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Sat, 09 Aug 2025 12:01:50 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Thu, 25 Feb 2010 13:10:59 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "337d3ddda79448f04ce571cc0da7646b"
x-archive-orig-x-runtime: 146ms
x-archive-orig-content-length: 21365
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Thu, 25 Feb 2010 13:11:02 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Fri, 14 Aug 2009 18:31:21 GMT", ; rel="prev memento"; datetime="Wed, 27 Jan 2010 13:20:17 GMT", ; rel="memento"; datetime="Thu, 25 Feb 2010 13:11:02 GMT", ; rel="next memento"; datetime="Mon, 29 Mar 2010 19:49:27 GMT", ; rel="last memento"; datetime="Sun, 29 Jun 2025 13:49:05 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 51_14_20100225125215_crawl101-c/51_14_20100225130925_crawl101.arc.gz
server-timing: captures_list;dur=0.800168, exclusion.robots;dur=0.030251, exclusion.robots.policy;dur=0.014069, esindex;dur=0.018256, cdx.remote;dur=83.178932, LoadShardBlock;dur=298.978740, PetaboxLoader3.datanode;dur=88.818947, PetaboxLoader3.resolve;dur=286.769615, load_resource;dur=151.527075
x-app-server: wwwb-app222
x-ts: 200
x-tr: 614
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
brandonaaron's jquery-mousewheel at master - GitHub
brandonaaron / jquery-mousewheel
- Source
- Commits
- Network (3)
- Issues (1)
- Downloads (7)
- Wiki (1)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
name | age | message | |
---|---|---|---|
![]() |
ChangeLog.markdown | Fri Feb 12 15:05:51 -0800 2010 | updatin readme and license [brandonaaron] |
![]() |
LICENSE.txt | Fri Feb 12 15:05:51 -0800 2010 | updatin readme and license [brandonaaron] |
![]() |
README.markdown | Sun Feb 14 20:24:32 -0800 2010 | Updating copyright [brandonaaron] |
![]() |
jquery.mousewheel.js | Fri Feb 12 15:05:51 -0800 2010 | updatin readme and license [brandonaaron] |
![]() |
test/ | Sat Mar 21 22:04:05 -0700 2009 | cleaned up the code [brandonaaron] |
README.markdown
jQuery Mouse Wheel Plugin
A jQuery plugin that adds cross-browser mouse wheel support.
In order to use the plugin, simply bind the "mousewheel" event to an element. It also provides two helper methods called mousewheel
and unmousewheel
that act just like other event helper methods in jQuery. The event callback receives an extra argument which is the normalized "delta" of the mouse wheel.
Here is an example of using both the bind and helper method syntax.
// using bind
$('#my_elem').bind('mousewheel', function(event, delta) {
console.log(delta);
});
// using the event helper
$('#my_elem').mousewheel(function(event, delta) {
console.log(delta);
});
License
The expandable plugin is licensed under the MIT License (LICENSE.txt).
Copyright (c) 2010 Brandon Aaron