0
Why angular javascript not working in playground?
3 Answers
+ 4
AngularJS works just fine for me
got a code we can inspect?
+ 4
have you included angular in the head tag?
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
0
<!DOCTYPE html>
<html>
    <head>
        <title>Page Title</title>
    </head>
    <body ng-app>
    <div id="d1">
    <input type="text" ng-model="name">
    
    </input>
    <div>
    hello {{name}}
    </div>
    </div>
        
    </body>
</html>





