Get started with angular-loader CDN
MIT licensed
AngularLoader is a module in AngularJS responsible for dynamically loading AngularJS applications and components.
Tags:- angular
- framework
- browser
- loader
- client-side
Stable version
Copied!
How to start using angular-loader CDN
<!DOCTYPE html>
<html>
<head>
<title>Get started with angular-loader CDN - cdnhub.io</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.7.9/angular.min.js"></script>
<script src="https://cdn.cdnhub.io/angular-loader/1.8.3/angular-loader.min.js"></script>
<script src="app.js"></script>
</head>
<body ng-app="myApp">
<div ng-controller="MyController">
<h1>Welcome to AngularJS with angular-loader!</h1>
</div>
</body>
</html>
Copied!
Copied!
Copied!