JSFiddle - React, Tailwind, and code Playground
by Imri Paloja
HTML
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
<button onclick="get()">Get</button>
<div contenteditable="true">
<p>
Herro????
</p>
</div>
JavaScript
function get() {
const text = () => (
window.getSelection().toString());
text();
}