Take a look at this where you can find a tab component. Within the tab settings, there are methods like:
select()
and
deselect()
I was unsure how to properly utilize them. I attempted to access them from my JavaScript file using $scope but encountered issues.
HTML
<tab ng-model="Tab1" ....>
JavaScript
$scope.Tab1.select();
However, it did not successfully select the content within that tab.
Please assist me in understanding how I can correctly select tab content via JavaScript or specifically through $scope.