Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

AngularJS ng-copy Directive


Example

Execute an expression when the text of the input field is being copied:

<input ng-copy="count = count + 1" ng-init="count=0" value="Copy this text" />
Try it Yourself »

Definition and Usage

The ng-copy directive tells AngularJS what to do when an HTML element is being copied.

The ng-copy directive from AngularJS will not override the element's original oncopy event, both the ng-copy expression and the original oncopy event will be executed.


Syntax

<element ng-copy="expression"></element>

Supported by all HTML elements.


Parameter Values

Value Description
expression An expression to execute when the text of an element is being copied.