I\'ve been setting up a jquery plugin MixItUp with AngularJS and although I can successfully initiate the container during one of my partial views with NgRoute, once I move
I'd recommend you to use directives when you are working with DOM. So you need to create some directive that will initiate MixItUp for you
angular.module('app').directive('myNgMixitup', [function(){
return {
restrict: 'AEC',
link: function(scope, element){
//now you can access the element/container
element.mixItUp();
}
};
}])