THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

AngularJS ng-copy Directive


Example

Execute an expresson 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.