Home » AngularJS ng-keypress Directive

AngularJS ng-keypress Directive

by Online Tutorials Library

AngularJS ng-keypress Directive

The AngularJS ng-keypress directive specifies the custom behavior of AngularJS when you press any on the keyboard for a specific HTML element.

Following is the order of a key stroke:

  • Keydown
  • Keypress
  • Keyup

It is supported by &ltinput>, &ltselect>, &lttextarea>, and other editable elements.

Syntax:

Parameter explanation:

expression: It specifies an expression that is executed when a key is pressed on the keyboard.

Let’s take an example to demonstrate ng-keypress directive.

See this example:

Test it Now

You may also like