Angularjs Examples

AJS Examples


AngularJS Event Reference

Learn how to use AngularJS Events like mouse related events, keyboard related events and change related events to facilitate DOM interactions. Complete reference of AngularJS Events to attache custome behavior against mouse, keyboard and change related events. Click on "Try Now" button to modify and test code yourself.

AngularJS Events Reference

EventDescriptionLive Demo
ngMousedown This allows you to attach custom behavior on mousedown event.Try Now
ngMouseenter This allows you to attach custom behavior on mouseenter event.Try Now
ngMouseleave This allows you to attach custom behavior on mouseleave event.Try Now
ngMousemove This allows you to attach custom behavior on mousemove event.Try Now
ngMouseover This allows you to attach custom behavior on mouseover event.Try Now
ngMouseup This allows you to attach custom behavior on mouseup event.Try Now
ngDblclick This allows you to attach custom behavior on mouse dblclick event.Try Now
ngClick This allows you to attach custom behavior on mouse click event.Try Now
ngKeydown This allows you to attach custom behavior on keydown event.Try Now
ngKeypress This allows you to attach custom behavior on keypress event.Try Now
ngKeyup This allows you to attach custom behavior on keyup event.Try Now
ngChange This allows you to attach custom behavior on text change event.Try Now