Categories
AngularJS

Embed external HTML page into AngularJS

You can embed external HTML pages into AngularJS. The most common way, is to use an ajax request to fetch data from the server, and then put the data to the innerHTML of an HTML element.

You may like:  Ajax call - AngularJS

Basically, ng-include fetches then compiles and includes an external HTML fragment.

<ng-include
src="string" [onload="string"] [autoscroll="string"]>  


</ng-include>

Directive Info:
– This directive creates new scope.
– This directive executes at priority level 400.

Embed external HTML pages:

<div class="container">
<div ng-include="'firstpage.htm'"></div>
<div ng-include="'secondpage.htm'"></div>
</div>

For ngInclude references click here.

Avatar for Namaste UI (Author)

By Namaste UI (Author)

Namaste UI collaborates closely with clients to develop tailored guest posting strategies that align with their unique goals and target audiences. Their commitment to delivering high-quality, niche-specific content ensures that each guest post not only meets but exceeds the expectations of both clients and the hosting platforms. Connect with us on social media for the latest updates on guest posting trends, outreach strategies, and digital marketing tips. For any types of guest posting services, contact us on info[at]namasteui.com.

Leave a Reply

Your email address will not be published. Required fields are marked *