CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Thu, 07 Aug 2025 15:30:14 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100213180756
location: https://web.archive.org/web/20100213180756/https://github.com/anutron/clientcide-hovergroup
server-timing: captures_list;dur=1.744578, exclusion.robots;dur=0.072776, exclusion.robots.policy;dur=0.044028, esindex;dur=0.031738, cdx.remote;dur=34.430272, LoadShardBlock;dur=960.507431, PetaboxLoader3.datanode;dur=201.134731, PetaboxLoader3.resolve;dur=632.193864
x-app-server: wwwb-app201
x-ts: 302
x-tr: 1040
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
set-cookie: wb-p-SERVER=wwwb-app201; 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: Thu, 07 Aug 2025 15:30:15 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Sat, 13 Feb 2010 18:07:56 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "f0746bd37ea77cb56e2537ab75677d7a"
x-archive-orig-x-runtime: 158ms
x-archive-orig-content-length: 23936
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: Sat, 13 Feb 2010 18:07:56 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Tue, 06 Oct 2009 23:49:33 GMT", ; rel="prev memento"; datetime="Sun, 20 Dec 2009 00:25:01 GMT", ; rel="memento"; datetime="Sat, 13 Feb 2010 18:07:56 GMT", ; rel="next memento"; datetime="Thu, 27 May 2010 06:54:07 GMT", ; rel="last memento"; datetime="Sun, 06 Dec 2020 23:50:49 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: TLA-20100213172140-00999-ia360916-c/TLA-20100213175412-00781-ia360906.us.archive.org.warc.gz
server-timing: captures_list;dur=0.614793, exclusion.robots;dur=0.029488, exclusion.robots.policy;dur=0.016513, esindex;dur=0.011831, cdx.remote;dur=60.162523, LoadShardBlock;dur=291.046048, PetaboxLoader3.datanode;dur=174.589156, PetaboxLoader3.resolve;dur=366.100225, load_resource;dur=402.562365
x-app-server: wwwb-app201
x-ts: 200
x-tr: 818
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
anutron's clientcide-hovergroup at master - GitHub
This service is courtesy of Pledgie.
anutron / clientcide-hovergroup
- Source
- Commits
- Network (1)
- Issues (0)
- Downloads (1)
- Wiki (1)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
-
Branches (1)
- master ✓
- Tags (1)
Sending Request…
Enable Donations
Pledgie Donations
Once activated, we'll place the following badge in your repository's detail box:
Keeps track of when the mouse enters and exits a group of elements, allowing for time for the mouse to pass between them (think dropdown menus). — Read more

Aaron Newton (author)
Mon Nov 30 19:53:14 -0800 2009
name | age | message | |
---|---|---|---|
![]() |
README.md | Tue Sep 01 11:24:23 -0700 2009 | updating requirements [Aaron Newton] |
![]() |
Source/ | Mon Nov 30 19:53:14 -0800 2009 | more yaml tweaking [Aaron Newton] |
![]() |
package.yml | Mon Nov 30 18:32:06 -0800 2009 | new yaml headers [Aaron Newton] |
![]() |
screenshot.png | Tue Sep 01 10:56:50 -0700 2009 | adding screenshot [Aaron Newton] |
README.md
HoverGroup - mouseenter for multiple elements
Keeps track of when the mouse enters and exits a group of elements, allowing for time for the mouse to pass between them (think dropdown menus).
How to use
Requires
- MooTools Core 1.2.3: Class.Extras, Element.Event (and their dependencies)
- MooTools More 1.2.3.1: Class.Binds (and its dependences)
Syntax
new HoverGroup(options);
Arguments
- options - (object) an object of key/value settings
Options
- onEnter - (function) callback fired when the mouse enters the group
- onLeave - (function) callback fired when the mouse leaves the group
- elements - (mixed) collection of elements, a selector, an id, or an element to monitor for mouse enter/leave behavior
- delay - (integer) time (in ms) alloted for the mouse to leave one item in the group before it must enter another item in order to fire either the onEnter or onLeave events. Defaults to 300.
- start - (array) an array of events that can cause the onEnter event to fire. Defaults to ['mouseenter'] but could easily be, for example, ['click'].
- remain - (array) the events that keep the group open. Events that will keep the group from firing the onLeave event but only after the onEnter event has fired. If the start array doesn't include mouseenter, for example, you might want to set remains to ['mouseenter']. This would allow the user to click to open the group, but mouse around the group to keep it open. If start contains mouseenter, there's no need to specify it in the remain group. This value starts off as an empty array, as the default for start is ['mouseenter'].
- end - (array) the events that cause the onLeave event to fire. Defaults to ['mouseleave'].
HoverGroup method: attachTo {#HoverGroup:attachTo}
Attaches and detaches elements to the group. By default, the elements specified in the options are automatically attached, but you and add or remove items from the group at will.
Syntax
myHoverGroup.attachTo(elements[, detach]);
Arguments
- elements - (mixed) collection of elements, a selector, an id, or an element to attach to the group.
- detach - (boolean) if true the elements will be removed from the group.
Returns
- (object) - This instance of HoverGroup