AngularJS ng-mouseover
Directive
AngularJS Example
Execute an expression when the mouse pointer moves over the element:
Definition and Usage
The ng-mouseover directive is used to tell AngularJS what to do when the mouse moves over a specified HTML element.
The ng-mouseover directive does not override the element's native onmouseover event. When the event is triggered, the ng-mouseover expression and the native onmouseover event will both be executed.
Syntax
This directive is supported by all HTML elements.
Parameter Values
Value | Description |
---|---|
expression | The expression to be executed when the mouse moves over the element. |