Ng-Copy-Ng-Past-1

 

In this example we can set the value of isCopy,isPaste variables to true on ng-copy and ng-paste event respectively and display it below.By default value of these variables is false which is set in ng-init directive.

 
 
 
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.2/angular.min.js"></script> </head> <body ng-app> <div ng-init="isCopy=false;copyValue='Copy me!';isPaste=false"> <span ng-hide="isCopy">Copy here: <input ng-copy="isCopy=true" ng-model="copyValue" /><br /></span> <span ng-show="isCopy"> paste here: <textarea ng-paste="isPaste=true" ng-model="abc"></textarea></span> <br /> <pre>Copied: {{isCopy}}</pre> <pre>Paste: {{isPaste}}</pre> </div> </body> </html>
Output