Ng-Copy-Ng-Past-4

 

In this example we can set the value of isPaste=true on ng-paste event(when we paste the text to textbox) and display it below.By default value of isPaste variable is false which is set by 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="isPaste=false"> Paste here: <input ng-paste="isPaste=true" /><br /> <pre>pasted: {{isPaste}}</pre> </div> </body> </html>
Output