Using ng-click to call two different functions
angularjs
Solution
You can call multiple functions with ';'
ng-click="search(); match()"
Problem
Is there a way I can get `ng-click` to call two functions? I would like something along the lines of ``` ng-click ="{search(),match()}" ``` Instead of how I have it now, which is: ``` ng-click = "search()" ```