I am currently using Angular 2 with jQuery, the jQuery is concatenated into a separate file. This file exists out of many scopes, the scope is simply an on document ready function with an each on specific elements
When reloading the browser on the correct page the code gets executed perfectly fine because it truly finds the elements on document ready, however when navigating from another page the code does not run.
I tried working around the problem by setting an ngAfterViewInit()
in the app component, loading the script there instead of in the index.html like this:
export class AppComponent implements AfterViewInit{
ngAfterViewInit() {
$( document ).ready(function() {
$.getScript( "library/js/main.min.js" );
});
}
}
The code is again only executing when reloading on that specific page, do I need to add this ngAfterViewInit()
on every single component?
The solution was a
Router
event listener; the code in this snippet will listen to changes in the router (which are filtered on instances ofNavigationEnd
) and then executes the code inside, it retrieves a JavaScript file with jQuery.