Advertisement
Home Open Editor ❯

HTML oncut Attribute

Example

<input type="text" oncut="myFunction()" value="Try to cut this text!">

Try this code ❯

Meaning

The oncut attribute specifies the script to be run when the user cuts the content of an element.


Standard Syntax

<element oncut="script">


Applies to:

The oncut attribute can be used on the following element:

Element Attribute
All visible elements. oncut

Advertisement

Attribute Values

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