Advertisement
Home Open Editor ❯

HTML onpaste event Attribute

Example

<input type="text" onpaste="myFunction()" value="Try to paste text!">

Try this code ❯

Meaning

The onpaste attribute specifies the script to be run when the user pastes some content in an element.


Standard Syntax

<element onpaste="script">


Advertisement

Attribute Values

Value Description
script Specifies the script to be run on onpaste

Technical Details

Supported HTML elements:

<>
Home Open Editor ❯
Advertisement