How to apply jquery after AngularJS partial template is loaded How to apply jquery after AngularJS partial template is loaded angularjs angularjs

How to apply jquery after AngularJS partial template is loaded


When you specify your routes, you can also specify a controller, so your routes would look like this:

var app = angular.module('website', ['ngRoute']);app.config(function($routeProvider) {    $routeProvider.        when('/about',{templateUrl:'app/partials/about.html', controller: 'aboutCtrl'}).        when('/contact',{templateUrl:'app/partials/contact.html', controller: 'contactCtrl'}).        otherwise({redirectTo:'/home',templateUrl:'app/partials/home.html', controller: 'homeCtrl'})    });

Now, you can define inside each controller what you want to do, jquery-wise, as part of a function, like this:

angular.module('website').controller('aboutCtrl', ['$scope', function ($scope) {   $scope.load = function() {       // do your $() stuff here   };   //don't forget to call the load function   $scope.load();}]);

Make sense?


The other provided answers will work, but they are bound to controllers, and therefore not as scalable and reusable.

To do it the real "Angular" way as mentioned in the comments, you should be using a directive. The benefit to this is that you're able to create several instances with the same code, and can pass in attributes to the directive logic to "customize" the directive. Here's a sample of a way I've used it using bxSlider plugin:

JS:

app.directive('slider',  ['$rootScope', function($rootScope) {return {    restrict: 'EA',    templateUrl: '/path/to/template',    link: function(scope, iElement, attrs) {        //attrs references any attributes on the directive element in html        //iElement is the actual DOM element of the directive,        //so you can bind to it with jQuery        $(iElement).bxSlider({            mode: 'fade',            captions: true        });        //OR you could use that to find the element inside that needs the plugin        $(iElement).find('.bx-wrapper').bxSlider({            mode: 'fade',            captions: true        });       }    };}]);

HTML:

<div slider some-attibute="some-attribute"></div>

And inside your directive template you could have the slider wrapper and slides, which you could build dynamically using ng-repeat bound to scope data.

I'd recommend reading this excellent article by Dan Wahlin about creating custom directives and how to fully harness they're power.


I had the same problem, I was loading some nav links in a ng-include and I have a script file called on my index.html with jquery instructions to make links active and It i not see the included content.

I tried all of the above solutions and for some reasons, none of them worked for me. When the content is not included (straight in the index.html) jquery kicks in fine but once included it stopped recognizing my elements.

So I simply wrapped my instructions in a setTimeout() function and it worked! Maybe it'll work for you too?

setTimeout(function() {    $("nav ul li").click(function() {        $("nav ul li").removeClass('active');        $(this).addClass('active');    });});

Somehow the setTimeout() manages to load the script AFTER angular is done loading included content.

Happy coding everyone !