cursor-move

1.0.1 • Public • Published

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

Dependencies (6)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i cursor-move

    Weekly Downloads

    2

    Version

    1.0.1

    License

    MIT

    Last publish

    Collaborators

    • bmcmahen