Integration jQuery plugins in AngularJS
create a directive
App.directive('directiveName', function() {
return {
restrict: 'A',
link: function(scope, element, attrs) {
$(element).'pluginActivationFunction'(scope.$eval(attrs.directiveName));
}
};
});
and then in the html call the script and the directive
<div directiveName ></div>
<script type="text/javascript" src="pluginName.js"></script>