@ngdoc error @name ng:btstrpd @fullName App Already Bootstrapped with this Element @description Occurs when calling {@link angular.bootstrap} on an element that has already been bootstrapped. This usually happens when you accidentally use both `ng-app` and `angular.bootstrap` to bootstrap an application. ``` ... ``` Note that for bootrapping purposes, the `` element is the same as `document`, so the following will also throw an error. ``` ... ``` You can also get this error if you accidentally load AngularJS itself more than once. ``` ... ... ```