1.0.0 • Published 10 years ago

mouseenter v1.0.0

Weekly downloads
5
License
-
Repository
-
Last release
10 years ago

mouseenter

mouseenter event emulation

mouseenter(element, fn)

var mouseenter = require('mouseenter');
var div = document.querySelector(...);

mouseenter(div, function(ev) {
    console.log('the mouse is here');
});

unbind

mouseenter returns a function you can use to no longer react to mouseenter events. Call this function and the previously bound event will be unbound.

var unbind = mouseenter(div, function(ev) {
    console.log('the mouse is here');
});

// will listen for mouseenter events

// call `unbind` to stop listening
unbind();

testing

$ npm run test-local

Then open the url it gives you in a local browser.

Licence

MIT