on-select
v1.1.0
Published
invoke a callback when a user selects some text
Readme
on-select
Invoke a callback on user selection. This is a fork of yields/on-select.
Installation
Install with Duo, Component, or NPM.
$ npm install on-selectExample
var onselect = require('on-select');
var unbind = onselect(el, selected);
function selected(e){
console.log(e);
unbind();
}API
onselect(el, fn)
Invoke fn(e, str) when a user selects within el.
str is the user selected text.
License
MIT
