I had an application in angular1 and I was using jquery to load an external page in my HTML element. This is the html of my container element:
<div id="externalContainer" class="text-center">
</div>
I used the following script to load the external page.
$( "#externalContainer" ).load( myExternalPageLink );
Now this doesn't seem to work in angular4, can experts guide me how can I achieve this functionality in angular4?