Third party library not working with angular js
- by sarvesh
I am using navgoco.js and angular js in an application and I have following html
<div id="demo">
<ul >
<li ng-repeat ... >
<a href="#"> ... </a>
......
</li>
</ul>
</div>
js code
$j("#demo1").navgoco({accordion: false});
It is supposed to do some expand-collapse of menus.
the problem is that navgoco events are not performing on clicking on anchor. It simply adds # to url. In the rendered html of anchor tag, anuglar is adding ng-binding that may be the problem. Please help.