If your using angular and you want to access the DOM element that triggered the event but do not want to query the DOM to do so, then you can access it from your method like so.
.controller("MyCtrl", function($scope){
$scope.doWork = function($event){
var element = angular.element($event.target);
};
})
Related External Links: