<html>
<body>
<p>This example demonstrates how to assign an "onselect" event to an input element.</p>
Select some text: <input type="text" value="Hello world!" onselect="myFunction()">
<p id="demo"></p>
<script>
function myFunction() {
document.getElementById("demo").innerHTML = "You selected some text!";
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_onselect_html by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 17:40:04 GMT -->
</html>