Can we load an external angular site inside another angular site?
Site1 and Site2 are built in angularjs. Do we have any concept in angularjs (other than an iframe) for loading site2 pages inside the Site1 div? If you have examples, please share this. Thanks in advance.
Besides the html content loaded from the external url (site2) to the original site (site1), there are many css and js files included in site2 screens whether or not it gets loaded?
source to share
you can use
1) ngInclude Check documentation for use
2) ng-bind-html, but you need to take care of ngSanitize . You have to put your html content in a special variable marked as trusted html. You need to use the $ sce service for this.
Hope it helps
source to share
did using <iframe src="http://www.w3schools.com"></iframe>
below url can help u
Using external url in ng-include in AngularJS
source to share