Third party library not working with angular js

Posted by sarvesh on Stack Overflow See other posts from Stack Overflow or by sarvesh
Published on 2014-08-18T09:37:37Z Indexed on 2014/08/18 16:24 UTC
Read the original article Hit count: 145

Filed under:

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.

© Stack Overflow or respective owner

Related posts about angularjs