JSFiddle - React, Tailwind, and code Playground
HTML
asdf
TypeScript
$(document.body).on('mouseup', function(){
var text = document.getSelection().toString();
var length = document.getSelection().toString().length;
if (text) {
alert(text);
}
if (length) {
alert(length);
}
});