JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0-rc.3/angular.js"></script>
<div ng-app ng-controller="x">
<input ng-cut="cut($event)" ng-keydown="kp($event)" />
</div>
<input oncut="return false;" onkeydown="return false;">
JavaScript
function x($scope) {
$scope.cut = function ($event) {
console.log('cut', $event);
$event.preventDefault();
}
$scope.kp = function ($event) {
console.log('keypress', $event);
return false;
}
}