The angular.bootstrap() Function in AngularJS is a functional component in the Core ng module which is used to start up an Angular application manually, it provides more control over the initialization of the application.
Syntax:
angular.bootstrap(element, [modules], [config])
Parameter Values:
- element: An element is a DOM element (e.g. document) which is the root of the Angular application.
- Modules: (Optional)Modules is an array of modules to be loaded.
- Config: (Optional)Config is an object used for configuration options.
Example 1:
<html> <head> <title>angular.bootstrap()</title> <script src= </script> <style> .id { font-size: 1.5em; color:green; } </style> </head> <body ng-app="app" style="text-align:Center"> <h1 style="color:green">GeeksforGeeks</h1> <h2>angular.bootstrap()</h2> <div ng-controller="geek"> <span class="id">{{name}}</span> is the computer science portal for geeks. </div> <script> var app = angular.module("app", []); app.controller('geek', ['$scope', function ($scope) { $scope.name = "GeeksforGeeks"; }]); angular.bootstrap(document, ['app']); </script> </body> </html> |
chevron_right
filter_none
Output:

Example 2:
</div> <html> <head> <title>angular.bootstrap()</title> <script src= </script> </head> <body ng-app="app" style="text-align:Center"> <h1 style="color:green">GeeksforGeeks</h1> <h2>angular.bootstrap()</h2> <div ng-controller="geek"> <div class="col-md-3 well" ng-init="count=0"> Male: <input type="radio" ng-model="gender" value="Male" ng-change="layout(gender)" /> Female: <input type="radio" ng-model="gender" value="Female" ng-change="layout(gender)" /> <pre><b>You selected:</b> {{result}} </pre> </div> </div> <script> var app = angular.module("app", []); app.controller('geek', ['$scope', function ($scope) { $scope.layout = function (gender) { $scope.result = gender; } }]); angular.bootstrap(document, ['app']); </script> </body> </html> |
chevron_right
filter_none
Output:
Before Selection:

After Selection:

Recommended Posts:
- AngularJS | angular.isObject() Function
- AngularJS | angular.isUndefined() Function
- AngularJS | angular.isNumber() Function
- AngularJS | angular.isString() Function
- AngularJS | angular.isDefined() Function
- AngularJS | angular.isDate() Function
- AngularJS | angular.toJson() Function
- AngularJS | angular.element() Function
- AngularJS | angular.isFunction() Function
- AngularJS | angular.isElement() Function
- AngularJS | angular.equals() Function
- AngularJS | angular.isArray() Function
- AngularJS | angular.bind() Function
- AngularJS | angular.forEach() Function
- AngularJS | angular.lowercase() Function
- AngularJS | angular.uppercase() Function
- How to execute AngularJS controller function on page load ?
- AngularJS | ng-show Directive
- Difference between Bootstrap and AngularJS
- AngularJS | currency Filter
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.

