bmcmahen / cursor-move

an event emitter for when the cursor position changes inside of a contenteditable element

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

an event emitter for when the cursor position changes inside of a contenteditable element


Languages

Language:JavaScript 100.0%