Advertisement
Home Open Editor ❯

HTML onselect event Attribute

Example

<input type="text" value="Hello world!" onselect="myFunction()">

Try this code ❯

Meaning

The onselect attribute specifies the script run after some text has been selected in an element.


Standard Syntax

<element onselect="script">


Advertisement

Attribute Values

Value Description
script Specifies the script to be run on onselect

Technical Details

Supported HTML elements:

<input type="file">, <input type="password">, <input type="text">, and <textarea>
Home Open Editor ❯
Advertisement