How to handle DOM manipulation in Angular. I don't want to use jQuery.
Following is my jQuery code:
$(".next-step").click(function (e) {
var $active = $('.wizard .nav-tabs li.active');
$active.next().removeClass('disabled');
nextTab($active);
});
function nextTab(elem) {
$(elem).next().find('a[data-toggle="tab"]').click();
}
Basically I have breadcrumbs I want to go to next tab of it.