TAG
CSS
JavaScript
Result
Run
License
<h3>Please select text</h3> <textarea id="content">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</textarea>
textarea { width: 90%; height: 100px; }
window.addEventListener("load", () => { const $elContent = document.getElementById("content"); $elContent.addEventListener("select", e => { console.log(`selectionStart: ${e.currentTarget.selectionStart}`); }); });
Console
expand_less
License
License
by DevDic
Close