Improve this Doc  View Source

ngMousedown

  1. - directive in module ng

The ngMousedown directive allows you to specify custom behavior on mousedown event.

Directive Info

Usage

Arguments

Param Type Details
ngMousedown expression

Expression to evaluate upon mousedown. (Event object is available as $event)

Example

  Edit in Plunker
<button ng-mousedown="count = count + 1" ng-init="count=0">
  Increment (on mouse down)
</button>
count: {{count}}