AngularJS ng-cut
Directive
Example
Execute an expresson when the text of the input field is being cut:
<input ng-cut="count = count + 1" ng-init="count=0" value="Cut this text"
/>
Try it yourself »
Definition and Usage
The ng-cut
directive tells AngularJS what to do when you cut the text of an HTML element.
The ng-cut
directive from AngularJS will not override the element's original oncut event,
both the ng-cut
expression and the original oncut event will be executed.
Syntax
<element ng-cut="expression"></element>
Supported by <a>, <input>, <select>, <textarea>, and the window object.
Parameter Values
Value | Description |
---|---|
expression | An expression to execute when the text of an element is being cut. |