Text.onSelect : Text Object « Form « JavaScript Tutorial






The onSelect event handler is fired when the text in the box is highlighted.

<html>
    <head>
    <script language="JavaScript">
    <!--
    function setText(){
      document.myForm.myText2.value = document.myForm.myText1.defaultValue;
    }
    -->
    </script>
    </head>
    <body>
    <form name="myForm">
      <input type=TEXT value="Change Me?" name="myText1" onSelect='setText()'>
      <br>
      <input type=TEXT value="" name="myText2">
    </form>
    </body>
    </html>








10.14.Text Object
10.14.1.Text
10.14.2.Text.blur()
10.14.3.Text.defaultValue
10.14.4.Text.focus()
10.14.5.Text.form
10.14.6.Text.name
10.14.7.Text.onBlur
10.14.8.Text.onFocus
10.14.9.Text.onSelect
10.14.10.Text.select()
10.14.11.Text.type
10.14.12.Text.value