Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

angular is not defined In AngularJS

I am new to AngularJS and currently, I am doing controllers in AngularJS, but I don’t know I got an error angular is not defined Line number 21 if someone knows the issue inform me.

<!DOCTYPE html>
<html lang="en" ng-app="myLangApp">
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Document</title>
        <script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.8.2/angular.min.js" integrity="sha512-7oYXeK0OxTFxndh0erL8FsjGvrl2VMDor6fVqzlLGfwOQQqTbYsGPv4ZZ15QHfSk80doyaM0ZJdvkyDcVO7KFA==" crossorigin="anonymous" referrerpolicy="no-referrer" async></script>
    </head>
    <body>
        <div ng-controller="language">
            Select your favorite language:
            <button ng-click="selectLanguage('PHP')">PHP</button>
            <button ng-click="selectLanguage('javascript')">javascript</button>
            <button ng-click="selectLanguage('cpp')">cpp</button>
            <button ng-click="selectLanguage('java')">java</button>

            <p>You have selected: {{ myFavLang }}</p>
        </div>
        <script>
            var app = angular.module('myLangApp', []);
            app.controller('language',($scope)=>{
                $scope.myFavLang = 'None';
            })
        </script>
    </body>
</html>

>Solution :

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

just add simple script to load the angular

<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.8.2/angular.min.js" ></script>
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading