Advertisement
Home Open Editor ❯

HTML onselect 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">


Applies to:

The onselect attribute can be used on the following element:

Element Attribute
All HTML elements. onselect

Advertisement

Attribute Values

Value Description
script Specifies the script to be run on onselect
Home Open Editor ❯
Advertisement