<html>
<head>
<script>
function myFunction() {
document.getElementById("demo").innerHTML = "You selected some text";
}
</script>
</head>
<body>
Some text: <input type="text" value="Hello world!" onselect="myFunction()">
<p id="demo"></p>
</body>
<!-- Mirrored from www.w3schools.com/js/tryit.asp?filename=tryjs_events_onselect by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 02:40:41 GMT -->
</html>