Skip to content

Instantly share code, notes, and snippets.

@Anj21
Anj21 / Example.component.ts
Created March 6, 2019 07:23
load external java script file dynamically after navigation in angular2+
import { Component, OnInit } from '@angular/core';
import { LoadJsService } from './load-js.service';
@Component({
selector: 'app-home',
templateUrl: './example.component.html',
styleUrls: ['./example.component.css']
})
export class HomeComponent implements OnInit {