cursor-move
v1.0.1
Published
monitor cursor movements
Downloads
2
Readme
cursor-change
an event emitter for when the cursor position changes in a contenteditable document
Installation
Install with component(1) or duo or NPM.
$npm install cursor-change
Usage
var el = document.getElementsByTagName('div')[0];
var cursor = require('bmcmahen/[email protected]')(el);
cursor.on('change', function(pos){
console.log('changed to', pos);
});
setTimeout(function(){
cursor.unbind();
}, 10000);
Note
This specifically does not emit an event for selections. For that, use bmcmahen/monitor-text-selection
.
License
MIT