Question

i got the following structure:

<div directiveA>
    <a href="" directiveB>
</div>

Both directives got an onclick event. The problem is, that if a click on directiveB is performed, a click on directiveA is triggered as well.

How can i prevent this?

Thanks

Was it helpful?

Solution

In the directiveB on the click directive do this this

ng-click=doSomething();$event.stopPropagation()

There is an $event object available for all DOM events supported by angular.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top