Advertisement
Home Open Editor ❯

HTML oncopy Attribute

Example

<input type="text" oncopy="myFunction()" value="Try to copy this text.">

Try this code ❯

Meaning

The oncopy attribute specifies the script to be run when the user copies the content of an element.


Standard Syntax

<element oncopy="script">


Applies to:

The oncopy attribute can be used on the following element:

Element Attribute
All HTML elements oncopy

Advertisement

Attribute Values

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