1.0.1 • Published 9 years ago

cursor-move v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

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/cursor-change@1.0.0')(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