hoverintent-jqplugin
v0.2.1
Published
The popular 'hoverintent' library now available in npm
Downloads
380
Maintainers
Readme
hoverintent-jqplugin
This is just Brian Cherne's hoverintent JQuery plugin made available in NPM.
I made two modifications to the library:
- It can now be imported via amd/csj/globally.
- Hoverintent requires activation by passing it either the jquery or window object. See example below.
#Install
npm install --save hoverintent-jqplugin
#Use
// cjs
var $ = require('jquery');
require('hoverintent-jqplugin')($); // <---------- Attaches itself to the jquery object
// amd
require(['jquery', 'hoverintent'], function($, hoverintent) {
hoverintent($);
});
// global
<script src="jquery.js"></script>
<script src="hoverintent.js"></script>
<script>
hoverintent(window); // will attach itself to window.jQuery
</script>
#Clone and test
git clone [email protected]:olsonpm/hoverintent-jqplugin.git
npm install
npm test
#Run CJS example
npm install
gulp run-cjs-example
// now open up chrome and visit http://localhost:8080/ to view the example
I can add more examples if people want them.
A minified version is also available in the /dist directory.