JSFiddle - React, Tailwind, and code Playground

by hamix

HTML

Text:<input type="text" id="myID"  value="Hello World"></input>
<input type="button" id="myButton" value="Get Selected Id" name="Get Selected Id"/>

CSS

#myID {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    outline: none;
}

JavaScript

$("#myButton").click(function(){
alert(window.getSelection());
});