Specify custom behavior on keyup event.
<ANY
ng-keyup="">
...
</ANY>
Param | Type | Details |
---|---|---|
ngKeyup | expression |
Expression to evaluate upon
keyup. (Event object is available as |
<input ng-keyup="count = count + 1" ng-init="count=0">
key up count: {{count}}