I have the access to my parent element like this:
var parentElem = angular.element('#parent');
Then on this below click event I want to check if the click is generated by any child of above parent.
$('html').click(function (e) {
// check e.target is child of 'parentElem'
});