angularjs - Third party library not working with angular js -
i using navgoco.js , angular js in application , have following html
<div id="demo"> <ul > <li ng-repeat ... > <a href="#"> ... </a> ...... </li> </ul> </div>
js code
$j("#demo1").navgoco({accordion: false});
it supposed expand-collapse of menus.
the problem navgoco events not performing on clicking on anchor. adds #
url. in rendered html of anchor tag, anuglar adding ng-binding may problem. please help.
the <a> tag directive in angularjs. see https://docs.angularjs.org/api/ng/directive/a
Comments
Post a Comment