skip to Main Content

Angularjs Accordion – Twitter bootstrap

How to expand accordion panel on button click function? this is my HTML: <!doctype html> <html ng-app="plunker"> <head> <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.5/angular.js"></script> <script src="http://angular-ui.github.com/bootstrap/ui-bootstrap-tpls-0.2.0.js"></script> <script src="example.js"></script> <link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css" rel="stylesheet"> </head> <body> <div ng-controller="AccordionDemoCtrl"> <accordion> <accordion-group ng-repeat="group in groups" is-open="heading1.isOpen"> <accordion-heading> <span ng-click="opened(group,…

VIEW QUESTION
Back To Top
Search