/hoover

Primary LanguageJavaScript

Hoover

Hoover is a tiny jQuery/Zepto plugin for triggering delayed hover events. Similar to hoverIntent, but under 1k minified. This plugin is based on a gist from Thomas Fuchs.

$('.button').hoover({in: 500, out: 250})
            .on('hooverIn', function() { console.log('hovering in') })
            .on('hooverOut', function() { console.log('hovering out') })