I would like to invoke a function when target element has been deleted. I tried something like below, and it seems like working well. Is it okay to use this code? (since there is no reference document about 'remove' listener on neither angularjs nor jquery)
angular.element( event.currentTarget)
.on( 'remove', function() {
// some code
})